Created
December 4, 2019 03:47
-
-
Save vipulbhj/93406869984293cc80f10b62d38e292a 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 = array1; | |
arr1 = []; | |
console.log(arr2); | |
// -> Output [1, 2, 4, 5]; |
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 = array1; | |
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