Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created June 15, 2016 05:36
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/d29fdc9788a3f089ac51006a120b6c4e to your computer and use it in GitHub Desktop.
Save codecademydev/d29fdc9788a3f089ac51006a120b6c4e to your computer and use it in GitHub Desktop.
Codecademy export
var hungry = true;
var foodHere = true;
var eat = function() {
if (hungry && foodHere) {
console.log("true");
} else {
console.log("false");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment