Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 12, 2018 14:25
Show Gist options
  • Save khg0712/b456e781c93aec9ec4f4ba7ed617af7a to your computer and use it in GitHub Desktop.
Save khg0712/b456e781c93aec9ec4f4ba7ed617af7a to your computer and use it in GitHub Desktop.
배열 생성 예제 2
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