Last active
May 12, 2018 14:58
-
-
Save khg0712/4a6997f5da820081edba3c9016e7a027 to your computer and use it in GitHub Desktop.
length 프로퍼티 사용 예
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,5,6];//배열 생성 | |
console.log(a.length);//6 출력 | |
a.length = 2; | |
console.log(a.length);//2 출력 | |
console.log(a);//[1,2] 출력 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment