首页 > 判断为空:null、undefined、空字符串、中文空格

判断为空:null、undefined、空字符串、中文空格

/*判断为空*/ 
private isNull=data=> (data == null || (data.toString().replace(/ | /g, "") === ""));//测试----------------------------------------
isNull(undefined);//true
isNull(null);//true
isNull('');//true
isNull(' ');//true
isNull(' ');//true

更多相关: