Shorthand for if true then function?
Shorthand for if true then function?
让我直截了当地说到这一点。所以我在 Instagram post 上找到了一个 shorthand 类似这样的东西:
const bool = true
function myFunction (){
//smth
}
if(bool){
myFunction
}
我不记得它是什么,与 && 运算符有关。有人吗?
抱歉有点跑题了,但我真的需要这个。
也许您正在考虑使用 &&
因为它会短路
const bool = true;
const notBool = false;
function myFunction(){ console.log("hello, world!") };
bool && myFunction();
notBool && myFunction(); // nada!
让我直截了当地说到这一点。所以我在 Instagram post 上找到了一个 shorthand 类似这样的东西:
const bool = true
function myFunction (){
//smth
}
if(bool){
myFunction
}
我不记得它是什么,与 && 运算符有关。有人吗?
抱歉有点跑题了,但我真的需要这个。
也许您正在考虑使用 &&
因为它会短路
const bool = true;
const notBool = false;
function myFunction(){ console.log("hello, world!") };
bool && myFunction();
notBool && myFunction(); // nada!