Answers for "In your shallow Copy() function, write an Object.assign() method and pass two arguments to it: A new empty object as the target The source object that you wish to copy"

1

javascript clone object

var x = {myProp: "value"};
var xClone = Object.assign({}, x);

//Obs: nested objects are still copied as reference.
Posted by: Guest on April-27-2020

Code answers related to "In your shallow Copy() function, write an Object.assign() method and pass two arguments to it: A new empty object as the target The source object that you wish to copy"

Code answers related to "Javascript"

Browse Popular Code Answers by Language