分类:
前端
可以为了巧妙的实现为空验证,比较简洁的实现
可以直接判断if(a!=null&&typeof(a)!=undefined&&a!='')
使用
if(!!a)即可
为什么可以这样实现呢
因为一个感叹号的时候,可以让null,underfied,''都为true,所以在取一个反就是false了
!null=true
!undefined=true
!''=true
!100=false
!'abc'=false
评价