▲ Remove null from an Array with Lodash at masteringjs.io▼1 up and 0 down, posted by vkarpov15 872 days ago 1 comment
nagyadam2092 872 days ago. link 2 points ▲ ▼Why do you need to use lodash's `filter`? `Array.prototype.filter` should suffice, so like ``` array.filter(el => !_.isNull(el)); ```