prompt("how old are you?") 에 값을 입력하면
그 값은 언제나 string으로 반환된다.
string을 number type으로 바꾸려면
parseInt(prompt("how old are you?"))
"15"(string) ----> 15 (number)
const age = 1
typeof age = number
const age2 = "1"
type of age2 = string
typeof(age)/typeof age 둘다 가능함
isNaN(age) ---> boolean 을 return하는 함수임
const age = "11"
if(isNaN(age)){
console.log("Not a Number")
}
isNaN("11")이 true 이므로
if(true) 가 되고
console.log가 실행된다.