🫠 배열인 듯 배열이 아닌 유사배열에 대해 정리해 보자. 배열과 유사배열을 생성해 보자 /* 배열과 유사배열 */ let arr = [10, 20, 'yj', 'sh', true] let not_arr = { 0: 10, 1: 20, 2: 'yj', 3: 'sh', 4: true } console.log(arr) // [ 10, 20, 'yj', 'sh', true ] console.log(not_arr) // { '0': 10, '1': 20, '2': 'yj', '3': 'sh', '4': true } 👉🏻 output : 주석 처리 확인 ✅ 배열인 arr와 배열인 척하는 유사배열인 not_arr를 생성하여 출력해 보았다. 🫠 유사배열이 배열인지 확인해 보자 /* 배열과 유사배열 */ let arr ..