Skip to content

removeArrayEmpty

移除数组中值为 nullundefined 或空字符串('')的元素。

使用

ts
import { removeArrayEmpty } from 'rattail'

removeArrayEmpty([1, null, undefined, '', 3]) // return [1, 3]

参数

参数类型默认值
arrArray

返回值

类型
Array