=== in function javascript 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: === javascript
// === means equal value and equal type
var x = 5
// true
x === 5
// false
x === "5"