简体中文
Appearance
移除数组中值为 null 或 undefined 的元素。
null
undefined
import { removeArrayBlank } from 'rattail' removeArrayBlank([1, null, 2, undefined, 3]) // return [1, 2, 3]
arr
Array