JavaScript Closure Example
by dswitzer
JavaScript
function hello(world){
return "hello " + world;
}
function proxy(world){
return function (){
return hello(world);
}
}
alert(proxy('world')());
by dswitzer
function hello(world){
return "hello " + world;
}
function proxy(world){
return function (){
return hello(world);
}
}
alert(proxy('world')());