ElseIf.s constructor

ElseIf.s(
  1. Logic condition,
  2. Conditional then
)

If condition is 1, then then will be executed.

Use this constructor when you only have a single then condition.

Implementation

ElseIf.s(Logic condition, Conditional then) : this(condition, [then]);