Hello, is it possible to return one of these two functions that are inside another function separately? For example, depending on the situation I want to return the result of the function question and in another moment the function answer?
function psNF(){
var pergunta = function(){
alert('a');
}
var resposta = function(){
alert('b');
}
}