📜  js 中的 == 是什么 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:36.729000             🧑  作者: Mango

代码示例3
//== in Javascript means to check if a value is equal to another value, and it ignores types (quotes and things like that).
var stage = "begin";
if (stage == "begin") {
Bot.send ("Hello User!");
}
//Output:
//Hello User!