Last active
November 27, 2017 17:30
-
-
Save Log-of-e/ca1a2f7014198966aa9a2f4dc75b0006 to your computer and use it in GitHub Desktop.
JS javascript Hoisting precedenc
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
| function afirst(a,b){ | |
| console.log(` | |
| ***\n | |
| ***hoist precednece:\n | |
| 1.function declaration | |
| 2.function args | |
| 3.var declaration, cannot overwrite no.1 function dec | |
| `) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment