JSFiddle - React, Tailwind, and code Playground

by Arif Hasan

JavaScript

var abc= [
        {
            "questions": [
                {
                    "question": "Would you Love to learn about Java?",
                    "answer": "Yes",
                    "name": "Study"
                }
            ]
        },
        {
            "questions": [
                {
                    "question": "Would you Love to learn about song?",
                    "answer": "Yes",
                    "name": "Song"
                },
                {
                    "question": "Would you Love to learn about rock?",
                    "answer": "No",
                    "name": "Song"
                }
            ]
        }
    ]
    var arr1=abc.map(item=>item.questions)
    console.log(arr1)