cloure

closures

by Govinda Ghimire

JavaScript

function sayHello(name) {
    var text = 'Hello ' + name;
    var sayAlert = function() { alert(text); }
    alert(test);
    sayAlert();
}