do {
statement
} while (condition)
statement
is always executed once before the condition is checked (and then again until the while condition returns false)
With do…while loops, everything in-between the curly braces (i.e. statement(s)) will run at least once
let n = 0
do {
console.log(n)
n++
} while (n < 0)