Skip to content

Instantly share code, notes, and snippets.

@fabriciofmsilva
Created February 17, 2018 12:33
Show Gist options
  • Save fabriciofmsilva/56bb7331a6fdf03816202550cd0afe3b to your computer and use it in GitHub Desktop.
Save fabriciofmsilva/56bb7331a6fdf03816202550cd0afe3b to your computer and use it in GitHub Desktop.
JavaScript Array Deep Copy

map

var arr = [1, 2, 3, 4, 5];
var arr2 = arr.map(function(item) {
  return item;
});

slice

var arr = [1, 2, 3, 4, 5];
var arr2 = arr.slice();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment