JSFiddle - React, Tailwind, and code Playground
JavaScript
function sayHello(name) {
var text = 'Hello ' + name; // local variable
return function() { alert(text); }
}
var greetBob = sayHello('bob');
greetBob();
function sayHello(name) {
var text = 'Hello ' + name; // local variable
return function() { alert(text); }
}
var greetBob = sayHello('bob');
greetBob();