{
videos: [
{
id: 'jbnddQ9l0IA',
original_title: 'Undefined - Episode 1',
title: 'Episode 1',
artist: 'Undefined',
duration: 1060,
publishedAt: 2016-02-20T10:11:25.280Z
},
{
id: 'SQzjzStU1RQ',
original_title: 'Why dividing by zero is undefined | Functions and their graphs | Algebra II | Khan Academy',
title: 'Why dividing by zero is undefined | Functions and their graphs | Algebra II | Khan Academy',
artist: '',
duration: 248,
publishedAt: 2013-05-18T10:12:56.581Z
}
],
didyoumean: '',
token: 'Abc',
apikey: 'Abc'
}
How can I get the first item's "id" in the "videos" array as string? (I'm using Node.js)
I need this output:
jbnddQ9l0IA
Thanks...