함수와 연산자에 전달되는 값은 대부분 적절한 자료형으로 자동 변환된다.
이런 과정을 "형 변환(type conversion)"이라고 한다.
MDN에서는 '문자열은 String 전역 객체를 직접 사용하여 생성할 수 있습니다.'라고 설명하며 String(thing)
으로 예시를 들고 있다.
숫자형 -> 문자형
//문자형으로 변환하기
const num = 2
console.log(num) //2
console.log(typeof(str)) ////number
const newString = String(num)
console.log(newString) //2
console.log(typeof(newString)) //string
문자형 -> 숫자형
//숫자형으로 변환하기
const str = "1"
console.log(str) //1
console.log(typeof(str)) //string
const newNum = Number(str)
console.log(typeof(newNum)) //number