Can there be two if statements in an action?

Can you do two else if or if in an action? Like:

function Update () {

if (condition) {
action
}
else if (condition) {
action
}
else if (condition) {
action
}
else {
action
}
}

Yes. As far as can tell from the documentation there is no limit to the amount of else if clauses.