JavaScript Closure Example

by dswitzer

JavaScript

function hello(world){
    return "hello " + world;
}

function proxy(world){
    return function (){
        return hello(world);         
    }
}
        
alert(proxy('world')());