Ad
  • Default User Avatar

    Hey, I can't understand why you people use
    if(condition)
    do cool stuff;
    else if(condition)

    instead of
    if(condition){
    do cool stuff
    }else if(condition){
    do cool stuf
    }

    I had to unlock the answer, but I can't seem to find anything that explains this. Why don't you use curly brackets {}?