Skip to content

Instantly share code, notes, and snippets.

@fxcosta
Created April 19, 2017 05:56
Show Gist options
  • Save fxcosta/11724fb2a6ff782fdc378adfdfee6d79 to your computer and use it in GitHub Desktop.
Save fxcosta/11724fb2a6ff782fdc378adfdfee6d79 to your computer and use it in GitHub Desktop.
simple named javascript function
function triple(x) {
return x * 3;
}
triple(30);
// 90
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment