Skip to content

Instantly share code, notes, and snippets.

@ehizman
Last active July 6, 2022 11:43
Show Gist options
  • Select an option

  • Save ehizman/f7f3093c0bee610f6d3d1c42d118af80 to your computer and use it in GitHub Desktop.

Select an option

Save ehizman/f7f3093c0bee610f6d3d1c42d118af80 to your computer and use it in GitHub Desktop.
Deep array copy in JS
//copy all values from source to destination
let dest = JSON.parse(JSON.stringify(source));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment