Skip to content

Instantly share code, notes, and snippets.

@bluemoon2014
Created April 22, 2018 10:05
Show Gist options
  • Save bluemoon2014/d152f1280f829075bd3b75ae33f50072 to your computer and use it in GitHub Desktop.
Save bluemoon2014/d152f1280f829075bd3b75ae33f50072 to your computer and use it in GitHub Desktop.
JavaScript 深复制
function deepCopyObjt(argument) {
if (typeof argument != "object") return argument;
var newObjt = {};
for (attr in argument){
newObjt[attr] = deepCopyObjt(argument[attr]);
}
return newObjt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment