w3resource

JavaScript: Create a shallow clone of an object

JavaScript fundamental (ES6 Syntax): Exercise-146 with Solution

Write a JavaScript program to create a shallow clone of an object.

  • Use Object.assign() and an empty object ({}) to create a shallow clone of the original.

Sample Solution:

JavaScript Code:

//#Source https://bit.ly/2neWfJ2 
const shallowClone = obj => Object.assign({}, obj);
const a = { x: true, y: 1 };
const b = shallowClone(a);  

console.log(b);

Sample Output:

{"x":true,"y":1}

Pictorial Presentation:

JavaScript Fundamental: Create a shallow clone of an object.

Flowchart:

flowchart: Create a shallow clone of an object

Live Demo:

See the Pen javascript-basic-exercise-146-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to randomize the order of the values of an array, returning a new array.
Next: Write a JavaScript program to serialize a cookie name-value pair into a Set-Cookie header string.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.