!!的用法

  • Post author:
  • Post category:其他


!''=true

!undefined=true

!null=true

!123=false

!'string'=false

!转换成布尔类型,空字符串、undefined和null取反都为false,其余都为true

!!常常用来做类型判断

if(!!a){
    //a!=null&&typeof(a)!=undefined&&a!=''
    //a有内容才执行的代码...  
}
let alertCls = classNames(prefixCls, {
      [`${prefixCls}-${type}`]: true,
      [`${prefixCls}-with-description`]: !!description,
      [`${prefixCls}-no-icon`]: !showIcon,
 }, className);

ant-design的源码有大量实现

项目中的案例



版权声明:本文为laukayiu原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。