If statement
if <condition> <body> [else <body>]If-chain
if cond {
// ...
} else if cond2 {
// ...
} else {
// ...
}if cond {
// ...
} else {
if cond {
// ...
} else {
// ...
}
}Last updated
if <condition> <body> [else <body>]if cond {
// ...
} else if cond2 {
// ...
} else {
// ...
}if cond {
// ...
} else {
if cond {
// ...
} else {
// ...
}
}Last updated