JSFiddle - React, Tailwind, and code Playground

by kentaromiura

JavaScript

var times = 5;
Ten: while(true){
    console.log('I want to jump!')    
    if (--times) continue Ten;//goto 10
    else break
}