Created
November 19, 2022 10:26
-
-
Save OrhanOzkercin/4d600706dec7cd7d58d2356874a84adc to your computer and use it in GitHub Desktop.
Medium Hoisting Code example-1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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