Skip to content

Instantly share code, notes, and snippets.

@OrhanOzkercin
Created November 19, 2022 10:26
Show Gist options
  • Save OrhanOzkercin/4d600706dec7cd7d58d2356874a84adc to your computer and use it in GitHub Desktop.
Save OrhanOzkercin/4d600706dec7cd7d58d2356874a84adc to your computer and use it in GitHub Desktop.
Medium Hoisting Code example-1
logMyName();
console.log("Name: ", myName);
console.log("Surname: ", mySurname);
let myName = "Orhan";
let mySurname = "Özkerçin";
function logMyName() {
console.log("Name: ", myName);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment