Created
May 15, 2021 13:12
-
-
Save rajat2502/5bebeac32e93f3ecfbb4b2e0c5294a3f 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
/* Change Array length to 0 */ | |
let arr = [1, 2, 3, 4, 5]; | |
// Change array length to 0 | |
arr.length = 0; | |
console.log(arr); | |
// [] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment