Guest User

Untitled

a guest
Dec 10th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. let thequestion = [
  2. new Question("What is a typical danish breakfast?", ["Pork", "Pork1", "Pork2"], "Pork"),
  3. new Question("Is NodeJS is a front end or back end framework?", ["Back end", "Front End"], "Back end"),
  4. new Question("Is JAVA object oriented language?", ["Yes", "No"], "Yes")
  5. ]
  6.  
  7. var answers_args = ["yeah", "jo"];
  8.  
  9. function insertQuestion(question, answers, correct) {
  10. thequestion.push(new Question(question, answers, correct));
  11. }
  12.  
  13. insertQuestion("Whats up?", answers_args, "yeah");
Add Comment
Please, Sign In to add comment