Created
April 24, 2017 04:27
-
-
Save fxcosta/061a16f5e67751345386f249f9793508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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