Skip to content

Instantly share code, notes, and snippets.

@macikokoro
Created June 15, 2014 19:52
Show Gist options
  • Save macikokoro/9d80dec4e8f2731a6ea9 to your computer and use it in GitHub Desktop.
Save macikokoro/9d80dec4e8f2731a6ea9 to your computer and use it in GitHub Desktop.
Example of a function that uses parameters to do an action.
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