📌 Array (배열): 순서(index)가 있는 값의 집합배열은 특별한 종류의 객체로, [대괄호]를 사용해 요소에 접근하는 방식은 객체 문법을 사용한 것이다.배열은 키(key)가 숫자(index)라는 점이 다르다. 👉 즉, 본질은 객체 배열 선언let friends = '한,재,정,유,윤,민,재,신'.split(',');console.log(friends);// ['한', '재', '정', '유', '윤', '민', '재', '신']let friends = ['한,재,정,유,윤,민,재,신'];console.log(friends); // ['한,재,정,유,윤,민,재,신'] 배열 요소의 총 갯수let friends = '한,재,정,유,윤,민,재,신'.split(',');console.log(fri..