Trying to log the data in the array but getting an error: data.id is undefined
JavaScript
x
6
1
{
2
youtube.map((item, index) => {
3
return console.log(youtube.id);
4
});
5
}
6
This is the JSON array which is being mapped:
JavaScript
1
29
29
1
{
2
"youtube":[
3
{
4
"id":"https://www.youtube.com/embed/hogbutbOgbo",
5
"title":"YouTube video player"
6
},
7
{
8
"id":"HHJkUQGm2H8",
9
"title":"YouTube video player"
10
},
11
{
12
"id":"fEE4RO-_jug",
13
"title":"YouTube video player"
14
},
15
{
16
"id":"dpqelE_9OgA",
17
"title":"YouTube video player"
18
},
19
{
20
"id":"u1NlmFa0-68",
21
"title":"YouTube video player"
22
},
23
{
24
"id":"qoUxP_h6DRs",
25
"title":"YouTube video player"
26
}
27
]
28
}
29
Advertisement
Answer
You are logging the main array instead of the mapped item, try changing to:
JavaScript
1
2
1
console.log(item.id)
2