Last active
October 15, 2017 10:32
-
-
Save tkssharma/c67bd6a631de20a1000d62989461dd71 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var quizQuestions = [ | |
{ | |
question: "What franchise would you rather play a game from?", | |
answerindex : 1, | |
answers: [ | |
{ | |
type: "IBM", | |
content: "Halo", | |
answer : false | |
}, | |
{ | |
type: "amdocs", | |
content: "Pokemon", | |
answer : false | |
}, | |
{ | |
type: "Sony2", | |
content: "Uncharted1", | |
answer : false | |
}, | |
{ | |
type: "Sony1", | |
content: "Uncharted2", | |
answer : false | |
} | |
] | |
} | |
]; | |
export default quizQuestions; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment