99클럽 코테 스터디 1일차 TIL : 자바스크립트에서의 기본 타입
728x90
  • 오늘의 학습 키워드 : 자바스크립트 기본타입

자바 스크립트에서의 기본타입

  • 숫자
  • 문자열
  • 불린값
  • null
  • undefined

자바 스크립트는 느슨한 타입 체크 언어

// num type
var intNum = 10;
var floatNum = 0.1;


// String type
var singleQuoteStr = 'single quote string';
var doubleQuoteStr = "double quote string";
var singleChar = 'a';

// boolean type
var boolVar = true;

// undefined type
var emptyVar;

// null type
var nullVar = null;

console.log(
    typeof intNum,
    typeof floatNum,
    typeof singleQuoteStr,
    typeof doubleQuoteStr,
    typeof boolVar,
    typeof nullVar,
    typeof emptyVar
);

// result => number number string string boolean object undefined
  • 오늘의 회고

  • java 에는 없는 데이터 타입을 알 수 있었다.

728x90