Skip to content

Instantly share code, notes, and snippets.

@dutchcelt
Created October 7, 2014 10:11
Show Gist options
  • Save dutchcelt/a4d5cedf6679c8446008 to your computer and use it in GitHub Desktop.
Save dutchcelt/a4d5cedf6679c8446008 to your computer and use it in GitHub Desktop.
Native extend.
function extend(){
for(var i=1; i<arguments.length; i++) {
for(var key in arguments[i]){
if(arguments[i].hasOwnProperty(key)) {
arguments[0][key] = arguments[i][key];
}
}
}
return arguments[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment