Created
April 19, 2017 05:56
-
-
Save fxcosta/11724fb2a6ff782fdc378adfdfee6d79 to your computer and use it in GitHub Desktop.
simple named javascript function
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 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