JSFiddle - React, Tailwind, and code Playground

by Trae

JavaScript

$.when(57)
    .then(function (value) {
    $.each(["1", "2", "3"], function (j, m) {
        var scopeVar = "Here";
        $.each(["a", "b", "c"], function (i, l) {
            console.log("Index #" + i + ": " + l + j);
            console.log(scopeVar + value);
        });
    });
});