JSFiddle - React, Tailwind, and code Playground

by saparin77

JavaScript

function foo(){
    for(i=4; i<10; i++){
        var a = "b";
    }
}

for(i=0; i<3; i++){
    foo();
    console.log("!");
}