JavaScript: Create a deep clone of an object
JavaScript fundamental (ES6 Syntax): Exercise-71 with Solution
Write a JavaScript program to create a deep clone of an object.
- Use recursion.
- Check if the passed object is null and, if so, return null.
- Use Object.assign() and an empty object ({}) to create a shallow clone of the original.
- Use Object.keys() and Array.prototype.forEach() to determine which key-value pairs need to be deep cloned.
- If the object is an Array, set the clone's length to that of the original and use Array.from(clone) to create a clone.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const deepClone = obj => {
let clone = Object.assign({}, obj);
Object.keys(clone).forEach(
key => (clone[key] = typeof obj[key] === 'object' ? deepClone(obj[key]) : obj[key])
);
return Array.isArray(obj) ? (clone.length = obj.length) && Array.from(clone) : clone;
};
const a = { foo: 'bar', obj: { a: 1, b: 2 } };
const b = deepClone(a); // a !== b, a.obj !== b.obj
console.log(b)
Sample Output:
{"foo":"bar","obj":{"a":1,"b":2}}
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-71-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to count the occurrences of a value in an array.
Next: Write a JavaScript program to detect if the website is being opened in a mobile device or a desktop/laptop.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join