문제와 답 프로그램 (2)
<!doctype html>
<html>
<head>
</head>
<body>
<script>
var questionList = [
{
question: 'Monday는 무슨요일?',
answer: '월요일',
score: 10
},
{
question: '미국의 수도는?',
answer:'워싱턴',
score: 20
},
{
question:'한국의 수도는?',
answer: '서울',
score: 40
}
];
var step = 0;
var score = 0;
while (step < questionList.length){
// questionList[index]가 반복되는 것을 제거
var currentQuestion = questionList[step];
var answer = prompt(currentQuestion.question);
if(answer == currentQuestion.answer){
score = score + currentQuestion.score;
}
step = step + 1;
}
alert('당신의 점수는 '+ score + '점 입니다');
</script>
</body>
</html>
'javascript' 카테고리의 다른 글
함수 특징 (0) | 2017.09.08 |
---|---|
문제와 답 프로그램 (3) - forEach 사용 (0) | 2017.09.04 |
문제와 답 프로그램 (0) | 2017.09.04 |
계산기 (4) (0) | 2017.09.04 |
계산기 (3) (0) | 2017.09.04 |