Created
June 15, 2014 19:52
-
-
Save macikokoro/9d80dec4e8f2731a6ea9 to your computer and use it in GitHub Desktop.
Example of a function that uses parameters to do an action.
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 sayHelloTo = function (name) { | |
console.log("Hello " + name); | |
}; | |
sayHelloTo("Kokoro"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment