Created
May 1, 2015 20:47
-
-
Save cyc115/39d34985bfe4411657ef to your computer and use it in GitHub Desktop.
javascript clone
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
//clone | |
var clone = function (old) { | |
var my = {}, key ; | |
for (key in old){ | |
my[key] = old[key]; | |
} | |
return my ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment