Skip to content

Instantly share code, notes, and snippets.

@vipulbhj
Last active December 4, 2019 06:38
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 vipulbhj/eae9a4547d4b07cb39681bac3cbe0d0f to your computer and use it in GitHub Desktop.
Save vipulbhj/eae9a4547d4b07cb39681bac3cbe0d0f to your computer and use it in GitHub Desktop.
let arr1 = [1, 2, 4, 5];
let arr2 = arr1;
arr1 = [];
console.log(arr2);
// -> Output [1, 2, 4, 5];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment