js function return
by Alejandro M
JavaScript
function test() {
alert("hola");
return function() {
alert("adios")
}
}
//test()()
var test = test(); //hola
test(); //adios
test(); //adios
by Alejandro M
function test() {
alert("hola");
return function() {
alert("adios")
}
}
//test()()
var test = test(); //hola
test(); //adios
test(); //adios