make an array empty in javascript code example
Example 1: javascript empty array
var colors = ["red","blue","green"];
colors = [];
Example 2: javascript empty array
arr = [];
const empty = arr => arr.length = 0;
var arr= [1,2,3,4,5];
empty(arr)
Example 3: create empty array javascript
const myArray1 = []
const myArray2 = new Array()
Example 4: javascript is array empty
var colors=[];
if(!colors.length){
}else{
}
Example 5: js delete all from array
var list = [1, 2, 3, 4];
function empty() {
list.length = 0;
}
empty();