javascript === with || code example
Example 1: what is == in js
//== 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!
Example 2: js ===
5 =='5' // true: ignores type
5 === '5' // false: includes type