M

Mr. Dubey • 52.26K Points
Coach

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);  
  • (A) Undefined
  • (B) 18,1
  • (C) 7,1
  • (D) Error

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.