Notice
Recent Posts
Recent Comments
초코레
typeof 본문
- 해당 대상의 타입을 조회하는 API
- typeof MDN 문서
1
2
3
4
5
6
7
8
9
10
11
|
console.log(typeof 42);
// expected output: "number"
console.log(typeof 'blubber');
// expected output: "string"
console.log(typeof true);
// expected output: "boolean"
console.log(typeof undeclaredVariable);
// expected output: "undefined"
|
cs |
'Frontend > JavaScript' 카테고리의 다른 글
자바스크립트 객체를 그냥 넘길 때 [Object Object]로 표시되는 경우 (0) | 2021.01.10 |
---|---|
이벤트 버블링, 이벤트 캡처 그리고 이벤트 위임까지 (0) | 2021.01.10 |
비동기 처리 패턴 (0) | 2021.01.10 |
this (0) | 2021.01.09 |
생성자 함수 (0) | 2021.01.09 |