Data type
What is Data type?
let str = "string"; str[0] = "S"; console.log(str); // "string"const a = 1; const b = 1; a === b // true.let a = 1; let b = a; a = 2; console.log(a); // 2 console.log(b); // 1
Why do you need data type?
Dynamic type
Type 확인하기
타입 변환
explicit coercion(, type casting)
문자열 타입으로 변환
숫자 타입으로 변환
boolean 타입으로 변환
implicit coercion(, type coercion)
문자열 타입으로 변환
숫자 타입으로 변환
불리언 타입으로 변환
Last updated