JSFiddle - React, Tailwind, and code Playground
JavaScript
function testClosure(){
var x = 2;
return function(y){
alert(2 + y());
}
}
var closure = testClosure();
closure(function(){
return 2;
}); //4
function testClosure(){
var x = 2;
return function(y){
alert(2 + y());
}
}
var closure = testClosure();
closure(function(){
return 2;
}); //4