Skip to content

Instantly share code, notes, and snippets.

@wagnerdevel
Created October 5, 2016 20:54
Show Gist options
  • Select an option

  • Save wagnerdevel/4286650127eee079ec5924360ea726fd to your computer and use it in GitHub Desktop.

Select an option

Save wagnerdevel/4286650127eee079ec5924360ea726fd to your computer and use it in GitHub Desktop.
function-expression
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