English
Appearance
Removes null or undefined values from an array.
null
undefined
array
import { removeArrayBlank } from 'rattail' removeArrayBlank([1, null, 2, undefined, 3]) // return [1, 2, 3]
arr
Array