Answers for "remove items null de um array javascript"

5

remove null from array javascript

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

function removeNull(array) {
return array.filter(x => x !== null)
};
Posted by: Guest on June-19-2020
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

Code answers related to "remove items null de um array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language