How to get position of array data | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to get position of array data

I have two arrays var item = [{"title":"how to cook food","description":"",{"title":"............]; var words = ["food","cook"]; Now I want each position of item array whose title contains atleast one of words value. I tried this one var data = []; items.forEach(function(element,index,array){ for(var x = 0; x < words.length; x++){ if(element[index].title.includes(words[x])){ data.push(element[index].title); } } }); But it gives can't read property of title, include is not property and also I tried loop inside loop but it hang. Please help me.

14th Aug 2021, 5:48 AM
Insider Evil
Insider Evil - avatar
2 Answers
+ 6
var items = [ { "title":"how to cook food", "description":"use the hands", }, { "title":"how to eat food", "description": "use the mouth" }, { "title":"how to drink water", "description": "use the mouth" }, ]; var words = ["food","cook"]; var data = []; items.forEach( function(element,index,array) { for(var x = 0; x < words.length; x++){ if(element.title.includes(words[x])){ data.push(element.title); break; } } });
14th Aug 2021, 6:30 AM
Calviղ
Calviղ - avatar
+ 1
Calviղ Thanks
14th Aug 2021, 6:40 AM
Insider Evil
Insider Evil - avatar