@do @whileCond - Do-While Loop
Syntax
@do
// Code to execute
@whileCond(condition)Description
Example
@define(counter, 1)
@do
<p>Iteration: @counter</p>
@define(counter, counter + 1)
@whileCond(counter <= 3)Expected Output
Notes
Last updated