Last active
December 4, 2019 06:39
-
-
Save vipulbhj/563bc1b4e7885b495dd9b9baaacad453 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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