Q. Which one of the given options can be considered as the correct output for the following JavaScript code?
Code:
const obj1 =
{
a:10,
b:15,
c:18
};
const obj2 =Object.assign({c:7, d:1}, obj1);
const obj2 =Object.assign({c:7, d:1}, obj1);
console.log(obj2.c, obj2.d);
β
Correct Answer: (C)
7,1