Доброго времени суток,немогу понять как в данном коде происходит обращение к многомерному массиву questions,когда ниже запрашиваеться
question,что многомерный массив отличаеться от вложеного английской буквой s,тогда не понятна связка,как понять что этот массив question являеться вложением в questions?
просьба обьясните по асе или почта,скайп
----------------------
ISQ 477857425
мыил
jei_@mail.ru
skype jeimen
тел(м) 8 903 212 66 82
----------------------
var score = 0; // initial score is 0
var questions = [
['How many moons does Earth have?', 1],
['How many moons does Saturn have?',31],
['How many moons does Venus have?', 0]
];
//go through the list of questions and ask each one
for (var i=0; i<questions.length; i++) {
askQuestion(questions[i]);
}
//function for asking question
function askQuestion(question) {
var answer = prompt(question[0],'');
if (answer == question[1]) {
alert('Correct!');
score++;
} else {
alert('Sorry. The correct answer is ' + question[1]);
}
}