Control flow / Conditional statements / if/else statements

//Warning: remove these parentheses
if (latitude == 0) { 
    location = "Equator";


//Error: no block
if latitude == 0
    location = "Equator";