Skip to content

Instantly share code, notes, and snippets.

@ubermachine
Created January 6, 2021 07:11
Show Gist options
  • Save ubermachine/9381e6b663b84257a6dfc991439d34b5 to your computer and use it in GitHub Desktop.
Save ubermachine/9381e6b663b84257a6dfc991439d34b5 to your computer and use it in GitHub Desktop.
//Clearly Parsing occurs before execution else "greeting" should have consoled same is reason behind for Hoisting
var greeting = "Hi";
console.log(greeting);
greeting = ."Hello"; //Syntax error is thrown first
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment