Created
August 3, 2019 15:20
-
-
Save ysm-dev/5d8e07f66b23bdefd504f88349138b38 to your computer and use it in GitHub Desktop.
Markdium-๐ป ํ๋ก ํธ์๋ ๋ฉด์ ์ง๋ฌธ - JS #4
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 foo() { | |
| // ํจ์ ๋ด์์ ๋ชจ๋ ๋ณ์์ ์ ๊ทผํ ์ ์์ต๋๋ค. | |
| var bar = 'bar' | |
| let baz = 'baz' | |
| const qux = 'qux' | |
| console.log(bar) // "bar" | |
| console.log(baz) // "baz" | |
| console.log(qux) // "qux" | |
| } | |
| console.log(bar) // ReferenceError: bar is not defined | |
| console.log(baz) // ReferenceError: baz is not defined | |
| console.log(qux) // ReferenceError: qux is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment