Skip to content

Instantly share code, notes, and snippets.

@latpaw
Created January 11, 2013 05:54
Show Gist options
  • Save latpaw/4508287 to your computer and use it in GitHub Desktop.
Save latpaw/4508287 to your computer and use it in GitHub Desktop.
javascript深度拷贝
function cloneObject(obj){
var o = obj.constructor === Array ? [] : {};
for(var i in obj){
if(obj.hasOwnProperty(i)){
o[i] = typeof obj[i] === "object" ? cloneObject(obj[i]) : obj[i];
}
}
return o
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment