Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Object.create
- 정규표현식
- css variables
- Sass
- img 확대
- regExp
- 무료 백엔드 배포
- Engoo
- ajax
- flex-shrink
- just-one-small-sip
- Node.js
- shit-christmas
- improve-iq-by-up-to-10%!
- css 오버레이
- flex-basis
- css grid
- node
- express-handlebars
- JS
- css
- Express
- module wrapper function
- es6
- select by attribute
- flex-grow
- 디자인패턴
- flexbox
- Prototype
- close together
Archives
- Today
- Total
primitive types & referece types 본문
primitive type
데이터가 메모리에 직접 할당 되는 데이터형이다. stack에 저장된다.
the data type which means that the data is directly assigned to memory
ex) String, Numbers, Boolean, null, undefined
! null의 타입이 object로 나오는 것은 typeof 메서드의 버그로 호환문제 때문에 수정을 하지 않을 것이라 하며 실제는 아무것도 없다.
Reference type
변수가 직접 데이터를 저장하는 것이 아니라 참조를 저장한다.
데이터는 heap이라 동적으로 할당되는 메모리에 저장되고, 그것을 변수가 참조한다.
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
Object literal (0) | 2021.05.27 |
---|---|
Arrays (0) | 2021.05.27 |
String (0) | 2021.05.27 |
변수 선언 방식 (0) | 2021.05.27 |
console (0) | 2021.05.27 |
Comments