js강의 3주차를 듣고 배운내용을 정리해봤다.
데이터타입 심화
자바스크립트에서 값의 타입은 크게 기본형(Primitive Type)과 참조형(Reference Type)으로 구분된다. 기본형과 참조형의 구분 기준은 값의 저장 방식과, 불변성 여부다.
- 기본형(Primitive type)
Number
String
Boolean
null
undefined
Symbol
- 참조형(Reference type)
Object
- Array
- Function
- Date
- RegExp
- Map, WeakMap
- Set, WeakSet