jen
10/4/2017 - 4:24 PM

while_loop.js

// While Loop
<mvt:assign name="g.counter" value="1" />

<mvt:while expr="g.counter LE 10">

	Hello world! <br>

<mvt:assign name="g.counter" value="g.counter + 1 " />	
</mvt:while>


// While Loop Tags

<mvt:whilestop />
<mvt:whilecontinue />