[JavaScript] 기본 구조, 문법 정리
'Hello world!' 문자(String) 데이터 123 숫자(Number) 데이터 true / false 불린(Boolean) 데이터 null Null 데이터 { } { 키1: 값1, 키2: 값2 } 객체(Object) 데이터 Key: Value 형태로 데이터 저장 const user = { name: 'Heropy', age: 85 } console.log(user.name) console.log(user['name']) 점 표기법 혹은 대괄호 표기법으로 데이터를 사용 [ ] [값1, 값2, 값3] 배열(Array) 데이터 데이터를 나열해서 저장 const fruits = ['Apple', 'Banana'] console.log(fruits[0]) console.log(fruits[1]) 대괄호 ..