let i = 10;

do{
   console.log(i);
   i++;
}
while(i <= 5);

Structure

do{
   // code
}
while(condition);

The important difference:

The code runs first, then the condition is checked.