У меня есть игра-викторина, и я хотел бы получить шаблонную форму, в которую я могу добавлять вопросы и ответы.
Может кто-нибудь подсказать мне, как отделить файл / какие файлы? Мне нужно создать?
Вместо того, чтобы жестко задавать вопросы, я хотел бы иметь возможность настраивать их в браузере.
// create questions
var questions = [
new Question("What used to be the currency of Italy?",["lira","pesos","forint", "dolar"], "lira"),
new Question("In what country was pesetas the currency??", ["Spain", "France", "Greece", "Germany"], "Spain"),
new Question("Which country is the largest producer of olive oil?", ["Spain", "France","Greece", "Italy"], "Spain"),
new Question("What is the world s largest office building?", ["Pentagon", "Boieng", "duPortage", "CMG"], "Pentagon"),
new Question("What is the main component in glass?", ["Sand", "Soil", "Oil", "Wood"], "Sand")
];