<script type="text/javascript">
var score = 0;
var questions = [
[ 'How many moons does Earth have?', 1],
[ 'how many moons does Saturn have?', 31],
[ 'How many moons does Venus have?', 0]
];
for (var i=0; i<questions.length; i++) {
askQuestion(questions[i]);
}
function askQuestion(question){
var answer = prompt(question[0], '');
if (answer == question[1]){
alert('Correct!');
score++;
} else {//Извините. Правильный ответ...
alert('Score. The correct answer is ' + question[1]);
}
}
</script>
Как появился аргумент (question) и как он работает?
Данный код работает.