[js] array 요소 개수 구하기

lilyoh·2020년 7월 21일
0

배열에서 요소의 개수를 구하려면 배열명.length 를 해준다.

arr = [1, 2, 3, 4, 5]
console.log(arr.length)

0개의 댓글