How do I find/match a string in an array?
How can I search within this?
If for example the likes[3].id was "99999" and that was what I wanted to search for... How could I do this??
I tried this:
var likes = response.data
jQuery.inArray(99999, likes)
But without any luck...
Thank you in advance.