how to remove null in js 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: js remove null from array
const filteredArray = [1, null, undefined, 2].filter(Boolean)