Skip to content

Instantly share code, notes, and snippets.

@stevencombs
Created August 16, 2013 21:53
Show Gist options
  • Save stevencombs/6253793 to your computer and use it in GitHub Desktop.
Save stevencombs/6253793 to your computer and use it in GitHub Desktop.
// Javascript Getting Started with Programming
// A Codecademy Javascript (How does a Function work) assignment
// Dr. Steven B. Combs, coding novice
// Create function
var foodDemand = function (food) {
console.log("I want to eat" + " " + food);
};
// Call function
foodDemand("Pizza")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment