while

Loop Forever

[...] >> {
    ...
}
while (true) {
    // code block
}

+ Break

^^^^^^^^^^^^^^^

+ Break (With Condition)

? (`expr`) :) {
    ^^^^^^^^^^^
}
[...] >> {
    ...
    
    ?(`expr`) => ^^^
}

+ Continue

While Loop

+ Condition

+ Increment Element

Last updated