if function example

JavaScript
var hi = "hi";
if (hi == "hi") { //if the variable hi is "hi" then:
  //Whatever you want to happen
} if (hi != "hi") {
  //Whatever you don't want to happen
}
Source

Also in JavaScript: