Skip to content

Instantly share code, notes, and snippets.

@IKatsuba
Created April 9, 2021 09:10
Show Gist options
  • Save IKatsuba/dcd164a3815d903a1dbe40f5f234dcb4 to your computer and use it in GitHub Desktop.
Save IKatsuba/dcd164a3815d903a1dbe40f5f234dcb4 to your computer and use it in GitHub Desktop.
const items = [1, 2, 3, 4];
items.splice(0, items.length);
//or
while(items.length > 0) {
items.pop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment