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
- webstorm
- lexical environment
- 정적스코프
- JavaScript
- 함수 표현식
- function
- hoisting
- happy hacking
- lexical scope
- vs code
- Arrow function
- 자바스크립트
- scope chain
- activation object
- variable object
- react router
- 객체
- react-router
- Execution Context
- BIND
- type
- 함수
- function 문
- moment.js
- 리액트 라우터
- 화살표 함수
- 실행컨텍스트
- 호이스팅
- This
- function 표현식
Archives
- Today
- Total
목록타입 (1)
Pandaman Blog
[JS] Javascript의 타입 (Type)
자바스크립트의 타입은 기본형 타입 Boolean, Null, Undefined, Number, String, Symbol과 별도의 Object 있습니다. 1. 기본형 타입 자바스크립트의 오브젝트를 제외한 모든 값은 변경 불가능한 값 (immutable value)입니다. Boolean Boolean 타입은 논리적 요소로, true, false 두 가지 값을 가질 수 있습니다. 보통 boolean 조건은 어떤 코드 부문이 실행되어야 할지 if 문, for 문에서 주로 사용합니다. if (false) { console.log('will pass'); } if (true) { console.log('will show'); // 'will show' } for(var i=0; i
Front end/Javascript
2019. 12. 29. 16:31