Answers for "javascript empty array"

13

javascript check if array is empty

if (array && !array.length) {
    // array is defined but has no element
}
Posted by: Guest on May-02-2020
13

javascript empty array

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

//function
const empty = arr => arr.length = 0;
//example
var arr= [1,2,3,4,5];
empty(arr) // arr=[]
Posted by: Guest on July-02-2020
11

javascript empty array

var colors = ["red","blue","green"];
    colors = []; //empty the array
Posted by: Guest on October-22-2019
0

javascript empty array

if (array === undefined || array.length == 0) {
    // array empty or does not exist
}
Posted by: Guest on September-05-2020
1

javascript empty array

A = [];
Posted by: Guest on October-23-2020
0

javascript empty array

var arr1 = ['a','b','c','d','e','f'];
var arr2 = arr1;  // Reference arr1 by another variable 
arr1 = [];
console.log(arr2); // Output ['a','b','c','d','e','f']
Posted by: Guest on October-23-2020

Code answers related to "javascript empty array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language