Created
December 16, 2018 04:20
-
-
Save SeokRae/0194b6daf558222b2df1ad3bfa281865 to your computer and use it in GitHub Desktop.
JavaScript Definition
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
// 자바스크립트의 선언 | |
var a = []; | |
// 자바스크립트의 배열에는 모든 타입이 들어갈 수 있다. | |
var a = [1,2,3,"Hello", null, true, []]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment