优化&运算
优化前
if (flag !== null && flag !== 'EFG' && flag !== 'YUT' && flag !== 'OPI') {
console.log('进来了');
}
1
2
3
2
3
优化后
if (str !== null && !str.includes("EFG") && !str.includes("YUT") && !str.includes("OPI")) {
}
1
2
3
2
3
注意
这里的includes是字符串
的方法,而不是数组的那个includes。
在线编辑 (opens new window)
上次更新: 2021/11/14, 07:48:46