Created
March 8, 2019 09:15
-
-
Save dlucidone/c9e02fc267423f3a4389023249e29daf to your computer and use it in GitHub Desktop.
Deep Clone Object
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function cloneObject(obj) { | |
var clone = {}; | |
for(var i in obj) { | |
if(typeof(obj[i])=="object" && obj[i] != null) | |
clone[i] = cloneObject(obj[i]); | |
else | |
clone[i] = obj[i]; | |
} | |
return clone; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment