I have an Array of Array and I just want to print outer Array not inner Array.
For example my array is :-
[
"Stories",
"Tasks",
"In Progress",
"In Review",
"Completed",
[
{
"divName": "content-container2",
"content": "us 2345",
"topPos": 109,
"leftPos": 150
},
{
"divName": "content-container3",
"content": "Description",
"topPos": 98,
"leftPos": 382
},
{
"divName": "content-container4",
"content": "12212",
"topPos": 110,
"leftPos": 644
}
]
]
I just want to show ["Stories", "Tasks", "In Progress", "In Review", "Completed"], nothing else.
Please suggest how to handle this thing in javascript?