JSFiddle - React, Tailwind, and code Playground

by ryanburnett

JavaScript

(function() {
    for(var i=0; i<10; i+=1) {
        if (i % 2 == 0) {
           console.log("i = ", i);
        }
    }
    
})()