Skip to content

Instantly share code, notes, and snippets.

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