Nov
23
2015
Conditionals
By abernal
While programming, most of the time a decision needs to be made, therefore we have the conditional tools, that help ups model such decisions
If and Else
Syntax
if (*some condition is true*){
// do this code
} else if (*other condition*) {
// Otherwise, do this code if match the other condition
} else {
// Otherwise, do this code
}
Sample