5 =='5' // true: ignores type
5 === '5' // false: includes type
The strict inequality operator ( !== ) checks whether its two operands are not equal, returning a Boolean result.
// === means equal value and equal type
var x = 5
// true
x === 5
// false
x === "5"
//== 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!