Skip to content

Instantly share code, notes, and snippets.

@rajat2502
Created May 15, 2021 13:12
Show Gist options
  • Save rajat2502/5bebeac32e93f3ecfbb4b2e0c5294a3f to your computer and use it in GitHub Desktop.
Save rajat2502/5bebeac32e93f3ecfbb4b2e0c5294a3f to your computer and use it in GitHub Desktop.
/* 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