[JS데이터] 참조형 -Array

HeuiEun Choi·2022년 12월 8일
0

javascript

목록 보기
6/39
post-custom-banner

Array


const fruits = ['apple', 'Banana'];

console.log(fruits[1]); //Banana

배열 데이터를 인덱싱 한다 => 아이템을 index로 접근했다는 의미.
배열의 요소(element) or item 이라고 혼용해서 사용된다.

console.log(fruits);
console.log(fruits.length);

배열은 length라는 속성을 가지고 있다.

만약, 마지막 데이터를 조회하고 싶다면?

console.log(fruits[2]);
console.log(fruits[fruits.length-1]);
profile
당신을 한줄로 소개

0개의 댓글