2021 JavaScript Cheatsheet | while() statement

PHOTO EMBED

Thu Sep 23 2021 01:40:35 GMT+0000 (Coordinated Universal Time)

Saved by @drack669 #javascript

let times = 0;
while (times < 10) {
  console.log(times);
  times = times + 1;
}
content_copyCOPY

https://www.frontendcheatsheets.com/javascript