1
Hello is it possible to return separately one of these two functions that are within another function ? For example depending on the situation I want to return the result of the question Function and at another time the answer Function ?
function psNF(){
var pergunta = function(){
alert('a');
}
var resposta = function(){
alert('b');
}
}
You want to return the function or just run it?
– Lucas