Skip to content

Instantly share code, notes, and snippets.

@dsaiztc
Created May 30, 2017 09:14
Show Gist options
  • Save dsaiztc/462bbc8a3a0f97e29158122bbebce23d to your computer and use it in GitHub Desktop.
Save dsaiztc/462bbc8a3a0f97e29158122bbebce23d to your computer and use it in GitHub Desktop.
// Shallow copy
var newObject = jQuery.extend({}, oldObject);
// Deep copy
var newObject = jQuery.extend(true, {}, oldObject);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment