Unit2 - chapter 2. 타입

ddimi·2022년 8월 22일
0

SEB_FE_41

목록 보기
1/14

typeof 연산자를 사용하여 값의 타입을 확인하는 방법

typeof 연산자를 사용

특정 값의 타입을 모를 때 typeof 연산자를 사용해서 타입 확인 가능

typeof 연산자 사용법

typeof 연산자 다음에 값을 넣어줌

console.log(typeof 값)

실습

console.log(typeof 1) // number
console.log(typeof '1') // srting
console.log(typeof (1 < 2)) // boolean

변수에 할당한 값의 연산자 타입 확인하기

let number = 1;
console.log(typeof number) 

let string = '1';
console.log(typeof string)

0개의 댓글