Answers for "how to filter a null value from array js"

5

javascript filter null values from array

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

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

Code answers related to "how to filter a null value from array js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language