Below are the given input
JavaScript
x
4
1
const category = "Western Food"
2
const header = "Lamb chops"
3
4
Below is the array that needs to be filtered
JavaScript
1
14
14
1
const data = [
2
{
3
category: "Western Food",
4
tabs: [
5
{
6
header: "Pork chops"
7
},
8
{
9
header: "Lamb chops"
10
},
11
]
12
}
13
]
14
Output (Index of Lamb chops)
JavaScript
1
3
1
Output = 1
2
3
Advertisement
Answer
JavaScript
1
9
1
const getTabIndex=(selectedCategory,selectedHeader)=>{
2
const selectedTab=data.find(category=> category===selectedCategory)
3
4
if(selectedTab===undefined) return -1
5
6
return selectedTab.findIndex(tab=>tab.header===selectedHeader)
7
8
}
9
This function should return -1 when no matching values found.