Created
October 5, 2016 20:54
-
-
Save wagnerdevel/4286650127eee079ec5924360ea726fd to your computer and use it in GitHub Desktop.
function-expression
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
| var somaDoisNumeros = function(numero1, numero2) { | |
| return numero1 + numero2; | |
| }; | |
| somaDoisNumeros(10, 20); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment