반응형
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 |
Tags
- 코딩테스트
- 리코쳇 로봇
- css
- for ... of
- window.onload
- custom font
- keypress
- js
- woff2
- 알고리즘
- DOMContentLoaded
- 투포인터
- 택배 배달과 수거하기
- level2
- 1권 1진리
- 부자의 그릇
- fontweight
- 2023 카카오 블라인드 채용
- 2023 KAKAO BLIND RECRUITMENT
- 이즈미 마사토
- TypeScript
- decodeURIComponent
- 저는 이 독서법으로 연봉 3억이 되었습니다.
- keyup
- 내성적인 건물주
- 연속된 부분 수열의 합
- 요격 시스템
- 프로그래머스
- for ... in
- react native
Archives
- Today
- Total
목록typeof (1)
스카이코의 세상
typeof vs instanceof
typeof 피연산자의 타입을 알 수 있는 연산자입니다. 연산자 이므로 괄호를 사용하지 않으며 변수나 값의 자료형을 문자열로 반환합니다. 반환 값들은 number, string, function, boolean, object, undefined 6가지가 있습니다. console.log(typeof 5); // 'number' console.log(typeof "text"); // 'string' console.log(typeof function(){}); // 'function' console.log(typeof true); // 'boolean' console.log(typeof {}); // 'object' console.log(typeof undefined); // 'undefined' 이때 und..
IT/Javascript
2023. 2. 12. 02:06