Answers for "remove empty array in array javascript"

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
0

array remove empty entrys js

const filterArray=(a,b)=>{return a.filter((e)=>{return e!=b})}
let array = ["a","b","","d","","f"];

console.log(filterArray(array,""));//>> ["a","b","d","f"]
Posted by: Guest on February-04-2021
2

empty array js

// define Array
let list = [1, 2, 3, 4];
function empty() {
    //empty your array
    list = [];
}
empty();
Posted by: Guest on June-01-2020
0

empty array javascript

let myArray = [12 , 222 , 1000 ];  
myArray.length = 0; // myArray will be equal to [].
Posted by: Guest on November-20-2020

Code answers related to "remove empty array in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language