Jon
0
Q:

javascript declare empty array

const myArray1 = []
// or...
const myArray2 = new Array()
2
arr = [];   // set array=[]

//function
const empty = arr => arr.length = 0;
//example
var arr= [1,2,3,4,5];
empty(arr) // arr=[]
10
var colors = ["red","blue","green"];
    colors = []; //empty the array
9
var colors=[];
if(!colors.length){
	// I am empty
}else{
	// I am not empty
}
2
// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];
2
let arrayName = [];
3
if (array === undefined || array.length == 0) {
    // array empty or does not exist
}
0
let myArray = [12 , 222 , 1000 ];  
myArray.length = 0; // myArray will be equal to [].
0
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']
0

New to Communities?

Join the community