Skip to content

Instantly share code, notes, and snippets.

@khg0712
Last active May 12, 2018 14:58
Show Gist options
  • Save khg0712/4a6997f5da820081edba3c9016e7a027 to your computer and use it in GitHub Desktop.
Save khg0712/4a6997f5da820081edba3c9016e7a027 to your computer and use it in GitHub Desktop.
length 프로퍼티 사용 예
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