Answers for "js empty an array"

6

Javascript remove empty elements from array

var colors=["red","blue",,null,undefined,,"green"];

//remove null and undefined elements from colors
var realColors = colors.filter(function (e) {return e != null;});
console.log(realColors);
Posted by: Guest on July-25-2019
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
4

create empty array javascript

const myArray1 = []
// or...
const myArray2 = new Array()
Posted by: Guest on August-26-2020
3

javascript is array empty

var colors=[];
if(!colors.length){
	// I am empty
}else{
	// I am not empty
}
Posted by: Guest on November-05-2019
3

create an empty array js

let arrayName = [];
Posted by: Guest on March-17-2020
1

javascript declare empty array

// Variable array for a wider scope:
var arrayName = [];
// Local scope variable array:
let arrayName = [];
Posted by: Guest on June-10-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language