[기본문법 3] 데이터 구조, array, 리스트
// 데이터 구조 // array // // 데이터 구조가 없는 세상 // const mon = 'mon'; // const tue = 'tue'; // const wed = 'wed'; // const thu = 'thu'; // const fri = 'fri'; // const sat = 'sat'; // const sun = 'sun'; // const days0fWeek = [mon, tue, wed, thu, fri, sat, sun]; // const nonsense = [1, 2, "hello", false, null, true, undefined, 'sunho']; // console.log(days0fWeek, nonsense) const days0fWeek = ['mon', 'tue',..
2023. 1. 30.