🔧 동적 타이핑 : 문자열을 할당하면 문자 자료형, 숫자를 할당하면 숫자 자료형이 된다.
🔧 변수가 가지는 고정 타입이 없는 것이지, 타입이 없는 것이 아니다!
[ 데이터 타입 ]
Boolean 타입 : true, false
Null 타입 , Undefined 타입 :
Number 타입 : 정수, 실수, NaN
String 타입 : 따옴표로 묶어주면 된다.
더하기 (+) 연산자를 통해 같이 묶어줄 수 있다.
백틱과 $을 이용해서 묶어줄 수 있다. 파이썬의 format 같은 역할
const a = 'doyeon';
const d = `${a} Kim`
console.log(d);
출력 : doyeon Kim
Symbol 타입 : ES6부터 나오게 됨
const a = Symbol();
const b = Symbol(37);
const c = Symbol('doyeon');
const d = Symbol('doyeon');
console.log(a, typeof a)
console.log(c===d);
출력 :
Symbol() 'Symbol'
false