JSFiddle - React, Tailwind, and code Playground

by James Allardice

JavaScript

function test() {
    
    "use strict";
    
    var i;
    
    loop:
    for (i = 0; i < 10; i += 1) {
        if (i === 5) {
            break loop;
        }
    }

}

test();