TypeScript do while loop

The do while loop repeatedly executes a block of statements until a particular condition is true. It first executes a block of statements and then check the condition.

Syntax:

do { 
//Block of statements 
}while(condition);

TypeScript do while loop example:

var num:number=1;  
do{   
console.log(num);
num++;
}  while (num<=10);

 

Please follow and like us:
Content Protection by DMCA.com