prompt() #141
seonae-j
started this conversation in
JavaScript
prompt()
#141
Replies: 1 comment
-
prompt();라는 함수는 사용자에게 창을 띄어 값을 받음.
typeof라는 키워드를 쓰면 type를 볼 수 있는데, prompt();에서 숫자를 입력해도 string이라고 뜬다.
이렇게 숫자로 변환이 되야 비교를 할 수 있다.
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
페이지에서 javascript를 일시정지시킴
const age = prompt("How old are you?");
paresInt는 string을 number.로 만들어주는 function이다.
만약, prompt에 number가 아닌 string을 입력하면 pareseInt로 정의된 age는
NaN
값을 반환한다.=> 장점 : number을 사용하면 숫자 크기를 비교할 수 있다.
Beta Was this translation helpful? Give feedback.
All reactions