JS Type

신병규·2022년 6월 24일
0

JS

목록 보기
1/8
post-custom-banner

타입 (Type)

숫자나 문자와 같이 변수에 할당할 수 있는 형태

  • Number
  • String
  • Boolean
  • Undefined

typeof

특정값의 타입을 확인

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

변수에 할당한 값의 타입도 확인 가능

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

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

0개의 댓글