Skip to content

Instantly share code, notes, and snippets.

@bytespider
Created January 25, 2010 14:12
Show Gist options
  • Save bytespider/285885 to your computer and use it in GitHub Desktop.
Save bytespider/285885 to your computer and use it in GitHub Desktop.
Copy javascript array to new array
var array_a = [1,2,3];
var copy_of_array_a = array_a.slice(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment