Skip to content

Instantly share code, notes, and snippets.

@roatnek
Created March 13, 2017 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roatnek/0f89bc345fce45fb403e3f880e2091c3 to your computer and use it in GitHub Desktop.
Save roatnek/0f89bc345fce45fb403e3f880e2091c3 to your computer and use it in GitHub Desktop.
var original_array = ['D-1', 'D-2', 'D-3'];
var copied_array = original_array.concat();
original_array.push('Dragoon');
// original_array --> ['D-1', 'D-2', 'D-3', 'Dragoon']
// copied_array --> ['D-1', 'D-2', 'D-3']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment