JAVASCRIPT
자바스크립트(JavaScript)기초_자료형(타입)
mi-ni
2024. 3. 11. 21:33
자료형이란?
자료형(Type)= 집합
동일한 속성이나 특징을 가진 원소들을 묶은 것
1. Number Type
let num1 = 27;
let num2 = 1.5;
let num3 = -20;
let inf = Infinity;
let minf = -Infinity;
let nan = Nan; // Not a Number
2. String type
let myName = "김영희"
let myLocation ="서울시 역삼";
let introduce = myName + myLocation;
// backtick
// 템플릿 리터럴 문법
let introduceText = `${myName}는 ${myLocation}에 거주합니다.`;
console.log(introduceText);
3. Boolean Type
let isSwitchOn =true;
let isEmpty = false;
4. Null Type
let empty = null;
5. Undefined Type
(한번도 값을 준적이 없는것)
let none;