const age = parseInt(prompt(""How old are you?));
if(isNaN(age)){ #여기에 붙여넣기 -여기가 true or false가 될 것이다.
console.log("Please write a number"); #이렇게 할 수 있다.
#조건문을 사용하는 방법
} else {
console.log("Thank you for writing your age.");
}
#조건이 하나
많은 경우 if는 하나 이상 필요할 수 있어
그래서 else를 하는 대신
else if로 연결해 볼 거다. -if가 false일 때 한 가지 조건condition을 더 사영할 수 있게 해줘