Answers for "remove null on arry"

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

remove null and undefined from array

// Removing null,undefined,0 value from array

const data = ['Abc',0,null,"Hello",undefined]

const filterData = data.filter(Boolean);

console.log(filterData)
Posted by: Guest on August-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language