JS typeof 연산자

khundi·2022년 8월 22일
0
post-thumbnail

typeof 연산자

자바스크립트 값에는 여러 타입이 있다.

  • Boolean 타입
  • Null 타입
  • Undefined 타입
  • Number 타입
  • BigInt 타입
  • String 타입
  • Symbol 타입

자바스크립트엔 특정 값의 타입을 모를 때 확인할 수 있는 방법이 있다.
typeof 연산자를 이용하면 된다. typeof는 연산자 다음에 값의 타입을 반환하는 연산자이다.

사용법은 아래와 같이 사용하면 된다.

typeof;

예를 들어 아래와 같이 사용할 수 있다.

let a = 123;
console.log(typeof a) // 'number'

let b = '123';
console.log(typeof b) // 'string'
profile
안녕하세요. 웹 프론트엔드 개발자 전성훈입니다.

0개의 댓글