This commit is contained in:
qianguyihao 2020-05-23 18:15:25 +08:00
parent 4e7215f547
commit c17796bf66

View File

@ -108,18 +108,25 @@ if (result?.user?.name?.length) {
### 2020-04-28-判断字符串的包含关系
### 2020-04-28-字符串添加白名单
```js ```js
if ('str1' == ('str1' || 'str2')){ var str = 'qiangu2';
console.log('smyhvae); if (str == ('qiangu1' || 'qiangu2')) {
console.log('qianguyihao');
} }
``` ```
注意上面的代码根本就不会走 console.log语句因为if里面的内容是false 注意上面的代码根本就不会走 console.log 语句因为if里面的内容是false
如果我们要判断变量 `str` 是否在 `qiangu1、qiangu2`的合集里我们应该这样写
```js
var str = 'qiangu2';
if (str == 'qiangu1' || str == 'qiangu2') {
console.log('qianguyihao');
}
```