i want to know is there is a 'abc' in the [{title:'ccc'},{title:'abc'},{title:'ddd'}]
let a = 'abc'
let b = [{title:'ccc'},{title:'abc'},{title:'ddd'}]
if there is a in b{
return 'yes'
} else {
return 'no
}
//how can I do this and how to judge this