Uma função de fechamento
var returns_a_func = function () {
var word = 'I can see inside ' function sentence(){ var word2 = 'I can also see outside. ' console.log(word + 'and ' + word2) } return sentence;
}var finalSentence = returns_a_func()finalSentence()
Glorious Gentoo