JSFiddle - React, Tailwind, and code Playground

by MrTest

JavaScript

// i =12 ,18, 24, 30, 36
    for (var i = 12; i <= 36; i += 6) {
        
        console.log(i);
        
        // j = 10, 15, 20
        for ( var j = 10; i <=20; j +=5) {
            
            console.log(j);
        }
        
        
    }