I have this object
let obj = [
{name: 'title 1', values:['test 1', 'test 2']},
{name: 'title 2' values: ['test 3', 'test 4']}
]
I want to search for values = 'test 3' and it will return objects contaning that skills
ouput: {name: 'title 2' values: ['test 3', 'test 4']}
I have tried searching like obj.find(c=> c.skills), iteration etc. but it only works not inside the array of objects.