作用:相当于if语句的简写 例: if(21){ console.log("yes"); } === 21 conso
感化:相当于if语句的简写
例:
if(2>1){
console.log("yes");
}
===
2>1 && console.log("yes");
,温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/31864.html
感化:相当于if语句的简写
例:
if(2>1){
console.log("yes");
}
===
2>1 && console.log("yes");
,温馨提示: 本文由Jm博客推荐,转载请保留链接: https://www.jmwww.net/file/web/31864.html