Getting Started
This page will help you with importing Quizy.
Installing the package
$ npm install quizyImporting
const Quizy = require('quizy');
const question1 = new Quizy.Question('1+1=', ['1', '2', '3'], '2');
const question2 = new Quizy.Question('1+2=', ['1', '2', '3'], '3');
const myQuiz = new Quizy.Quiz('MyQuizName', [question1, question2])
// Now edit the quiz to your belongings!Last updated
Was this helpful?