[자바스크립트] 코드아카데미 문제풀이 Build "Rock, Paper, Scissors" (2/9)
User Choice
We start by first asking the user which option they want to pick. We will later use this choice in the compare function to determine the winner. 원문링크
이용자에게 가위바위보를 결정했다고 물어보고 그 대답을 userchoice에 저장합니다.
var userChoice = prompt("Do you choose rock, paper or scissors?");
위와 같이 입력하면 통과합니다.
반응형