티스토리 뷰

console.log(typeof 1); // number
console.log(typeof 1.0); // number
console.log(typeof '1'); // string
console.log(typeof "1"); // string
console.log(typeof `1`); // string

// typeof 연산자
let name = 'Text';
function sayHello() {
	console.log('hello');
}
console.log(typeof name); // string
console.log(typeof sayHello); //function
console.log(typeof 'Hello' + 'Codeit'); // stringCodeit
// not a number
console.log(typeof 8-3); // NaN

console.log(typeof ('Hello' + 'Codeit')); // string
console.log(typeof (8-3)); //number

 

'프론트엔드 > JavaScript' 카테고리의 다른 글

[자료형] 18. 템플릿 문자열  (0) 2022.07.04
[자료형] 14.형 변환  (0) 2022.07.04
[자료형] 08. 불린형  (0) 2022.06.24
[자료형] 07. 불 대수  (0) 2022.06.24
[자료형] 04. 문자열 활용  (0) 2022.06.24
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/12   »
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
글 보관함