conditional은 true와 flase를 알려주기 때문에 중요하다.
뭔가를 확인해야 할 때 항상 사용하는 것.
바로 if
**prompt -> 사용자에게 창을 띄울 수 있도록 한다.
cosnt age = prompt("How old are you?");
console.log(age);
여기서 type이라는 걸 사용할건데
**type -> 사용자가 아무거나 입력해도 string으로 바꿔준다.
cosnt age = prompt("How old are you?");
console.log(typeof age);
여기서 잠깐!
string을 number로 바꾸는 방법은?
typeof parseInt()
NaN = not a number
아무튼 넘어가서 코드를 변형해보자.
cosnt age = parseInt(prompt("How old are you?"));
몇 살인지 묻는 질문에 27을 입력하면 "27"을 27인 number로 변환해 출력할 것이다.
function은 내부에서 외부 순서로 나타난다.