very good and thanks in advance for reading this.
Given a code like this:
function uno(){
function dos(){
alert('no debería de aparecer')
}
return dos;
}
var res = uno();
res()
should I not return the function two object instead of displaying the alert because one () returns the object and not the call (two ())?
This does not let me sleep. Thank you very much again.