if (5 < 6 && 9 == 9) {
//This is called if 5 Less Than 6 AND 9 is equal to 9.
//The "&&" in the if statement repersents the "and"
}
if (title == "User greeting" || "User name")
{
do stuff
}
if (title == "User greeting" || "User name") {do stuff}
//You can't just use:
if (5 == 5 || 6) { ERROR }
//With the || being the OR.
//You have to say:
if (5 == 5 || 6 == 6) { WORKED }
//Hope that helped! :)