Skip to content

Instantly share code, notes, and snippets.

@kermit-klein
Created November 22, 2020 09:44
Show Gist options
  • Save kermit-klein/15e7d739662f683859890af105896881 to your computer and use it in GitHub Desktop.
Save kermit-klein/15e7d739662f683859890af105896881 to your computer and use it in GitHub Desktop.
hoisting1
printLastName() // "McClane"
printFirstName() // Uncaught TypeError: printFirstName is not a function
function printLastName() {
console.log("McClane")
}
var printFirstName = function() {
console.log("John")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment