Skip to content

Instantly share code, notes, and snippets.

@LiamKarlMitchell
Created December 11, 2014 22:13
Show Gist options
  • Save LiamKarlMitchell/0273348fdff4b1e82b18 to your computer and use it in GitHub Desktop.
Save LiamKarlMitchell/0273348fdff4b1e82b18 to your computer and use it in GitHub Desktop.
Copies the keys from passed in object and returns a new object that references all the same kerys.
function Clone(o) {
var n = {};
for (var a in o) {
if (o.hasOwnProperty(a)) {
n[a] = o[a];
}
}
return n;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment