Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created April 23, 2017 09:49
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 lenafaure/3676cf724abd358e37861ae493bc4ab5 to your computer and use it in GitHub Desktop.
Save lenafaure/3676cf724abd358e37861ae493bc4ab5 to your computer and use it in GitHub Desktop.
movieStar(); // Prints “TypeError : movieStar is not a function”
var movieStar = function () {  // This is a function expression and therefore not hoisted
  var name = “Philip Seymour Hoffman”;
  console.log(name); 
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment