js make array empty code example

Example 1: js how to check is array empty es6

var colors=[];
if(!colors.length){
	// I am empty
}else{
	// I am not empty
}

Example 2: javascript empty array

var colors = ["red","blue","green"];
    colors = []; //empty the array

Example 3: javascript empty array

arr = [];   // set array=[]

//function
const empty = arr => arr.length = 0;
//example
var arr= [1,2,3,4,5];
empty(arr) // arr=[]

Example 4: how to make array empty

A.length = 0

Example 5: javascript array clear

var cars = ["mazda","honda","tesla"];
	cars = []; // clear/empty the array

Example 6: empty array js

let list = [1, 2, 3, 4];
function empty() {
    //empty your array
    list.length = 0;
}
empty();