Home > react > isVisibleValue
是否是渲染后可见的值。 渲染后不可见的值包括:undefined、null、true、false、空字符串。
Signature:
export declare function isVisibleValue(value: any): boolean;
| Parameter | Type | Description |
|---|---|---|
| value | any | 值 |
Returns:
boolean
返回结果
isVisibleValue(null) // => false
isVisibleValue(0) // => true