JSFiddle - React, Tailwind, and code Playground

by jazahn

JavaScript

var k = 1;
var myfunc7 = function(){
    k = 2;
};
var myfunc8 = (function(){
    var k = 3;
    myfunc7();
    // what is k here?
})();
// what is k here?