javascript remove empty array code example

Example 1: remove null from array javascript

let array = [0, 1, null, 2, 3];

function removeNull(array) {
return array.filter(x => x !== null)
};

Example 2: 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);

Example 3: empty array javascript

let myArray = [12 , 222 , 1000 ];  
myArray.length = 0; // myArray will be equal to [].

Tags:

Php Example