[JavaScript] Schleifen mit while

let i = 3;
// true bis i == 0
while (i) {
  console.log(i);
  i--;
}