In this example: Say I know the 'title' of a question - is it possible from that, to find what the property 'name' is?
I'm wondering if there is a way to do this, without referencing the property in this example, within each object in 'questions'.
Angular solution welcome.
var list = {[
{
name: blue,
questions: [
{
title: 'what?',
question:'what is blue?
},
{
title:'why?',
question: 'why is blue blue?'
}
]
}....
]};