Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 420 Bytes

how_do_you_empty_an_array.md

File metadata and controls

17 lines (10 loc) · 420 Bytes

How do you empty an array?

There are multiple ways to empty an array in JavaScript. You can set its length to 0, use splice(), or create a new empty array.

Example:

let arr = [1, 2, 3];
arr.length = 0;
console.log(arr);  // Output: []

Tags: basic, JavaScript, Arrays