I need help. Recently started teaching mongodb. I can't figure out how to access the nested items. Please help: how can I find the key to "profession"?
{
"_id" : ObjectId("60a4bbd1753b2bb53e6f7dba"),
"name" : "Bob",
"class" : 7.0,
"lessons" : [
"english",
"mathematics"
],
"avgScore" : 3.5,
"parents" : [
{
"gender" : "female",
"name" : "Ira"
},
{
"gender" : "male",
"name" : "Dima",
"profession" : "programmer"
}
]
}