goto
Jump to a label within the current section, optionally based on a condition.
The goto method will only navigate to a label within the same section.
Properties
goto
An object that accepts the following properties.
goto.label
The label in section to jump to.
goto.when
A JavaScript condition that determines whether to perform the jump. If the condition evaluates to true, the jump is executed. If omitted, the jump is unconditional.
goto.max
The maximum number of times to jump, from the minimum of 1 to max 100 jumps.