Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created May 29, 2017 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/50fa04467bfd642da372050aa68e67f7 to your computer and use it in GitHub Desktop.
Save codecademydev/50fa04467bfd642da372050aa68e67f7 to your computer and use it in GitHub Desktop.
Codecademy export
// Nicely written function:
var calculate = function (number) {
var val = number * 10;
console.log(val);
};
// Badly written function with syntax errors!
var greeting = function (name) {
console.log("Hello" name);
}
greeting("Vlasis");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment