I have a quiz in react app now I want to send data in specific format as given below:-
{
"ques": [
{
"res": "one"
},
{
"res": "two"
}
]
}
My Code:-
Sanbox URL
You can check console after click on next button of each question.
currently I’m getting in different format like
[
"one",
"two"
]
Thanks for your efforts!
2
Answers
Is this helpful?
You just need to change the setSelectedAnswers
change this :
and
by this :
and