Skip to content

Instantly share code, notes, and snippets.

@jyotiarora2610
Created July 16, 2018 13:10
Show Gist options
  • Save jyotiarora2610/388354bd0085e56eed8480f4f298b9e8 to your computer and use it in GitHub Desktop.
Save jyotiarora2610/388354bd0085e56eed8480f4f298b9e8 to your computer and use it in GitHub Desktop.
function deepClone(object){
var newObject = {};
for(var key in object){
if(typeof object[key] === 'object'){
newObject[key] = deepClone(object[key]);
}else{
newObject[key] = object[key];
}
}
return newObject;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment