Skip to content

Instantly share code, notes, and snippets.

@mdmartinez
Created November 5, 2015 14:13
Show Gist options
  • Select an option

  • Save mdmartinez/13dcd82b337568ac2942 to your computer and use it in GitHub Desktop.

Select an option

Save mdmartinez/13dcd82b337568ac2942 to your computer and use it in GitHub Desktop.
var bar = “Baz”;
foo(); // => TypeError: undefined is not a function
var foo = function() {
console.log(“Hello ” + bar);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment