//== 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!