create quiz with javascript code example
Example 1: how to create a quiz in p5
var myQuestions = [
{
question: "What is 10/2?",
answers: {
a: '3',
b: '5',
c: '115'
},
correctAnswer: 'b'
},
{
question: "What is 30/3?",
answers: {
a: '3',
b: '5',
c: '10'
},
correctAnswer: 'c'
}
];
Example 2: how to create a quiz in p5
<div id="quiz"></div>
<button id="submit">Get Results</button>
<div id="results"></div>