Skip to content
On this page

在处理输入框相关业务时,往往会判断输入框未输入值的场景。

if(value !== null && value !== undefined && value !== ''){
    //...
}

改进使用空值合并运算符

if((value??'') !== ''){
  //...
}

Released under the MIT License.