JSFiddle - React, Tailwind, and code Playground

by jameswestgate

JavaScript

function sayHello(name) {
  var text = 'Hello ' + name; // local variable
  return function() { alert(text); }
}


var greetBob = sayHello('bob');

greetBob();