declare empty array javascript code example
Example 1: javascript empty array
var colors = ["red","blue","green"];
colors = []; //empty the array
Example 2: create empty array javascript
const myArray1 = []
// or...
const myArray2 = new Array()
Example 3: create an empty array js
let arrayName = [];
Example 4: generate empty array js
Array.from({length: 500})
// change the length to whatever value you want
Example 5: javascript declare empty array
// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];
Example 6: empty array js
let list = [1, 2, 3, 4];
function empty() {
//empty your array
list.length = 0;
}
empty();