Break & continue
Break
Syntax
Examples
Breaking down an infinite loop
while true {
break
}var i = 1
while i++ < 10 {
if i == 5 {
break
}
else {
puts i
}
}Continue
Syntax
Examples
Last updated