JSFiddle - React, Tailwind, and code Playground

by tea4two

JavaScript

var a = 100;

while( a < 10 ) {
    console.log(a);
    a++;
}
console.log('ループ抜けたよヽ(=´▽`=)ノ');