Created
May 12, 2018 14:25
-
-
Save khg0712/b456e781c93aec9ec4f4ba7ed617af7a to your computer and use it in GitHub Desktop.
배열 생성 예제 2
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 = [1,2,3,,4];//[1,2,3,empty,4] 배열 생성 | |
var b = [1,2,3,,,4];//[1,2,3,empty,empty,4] 배열 생성 | |
var c = [1,2,3,4,,];//[1,2,3,4,empty] 배열 생성 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment