Skip to content

Instantly share code, notes, and snippets.

@fxcosta
Created April 24, 2017 04:27
Show Gist options
  • Save fxcosta/061a16f5e67751345386f249f9793508 to your computer and use it in GitHub Desktop.
Save fxcosta/061a16f5e67751345386f249f9793508 to your computer and use it in GitHub Desktop.
function showName (firstName, lastName) {
var nameIntro = "Your name is ";
//esta função interior tem acesso as variáveis da função exterior, incluindo os parâmetros
function makeFullName () {
return nameIntro + firstName + " " + lastName;
}
return makeFullName ();
}
showName ("Felix", "Costa"); // Your name is Felix Costa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment