<html>
<body>
<script>
let a = 10;
// will execute twice
do
{
document.write("do executed <br/>");
a++;
}
while(a < 12)
</script>
</body>
</html>