How do I make a search thing

So in a project if I search up cat it will show up stuff that is related to cat.
I also want it kind of simple so it would use prompt boxes.
https://www.w3schools.com/js/tryit.asp?filename=tryjs_prompt

You will need a search algorithm.

how do I make a search algorithm

The easiest way is doing a Array.map() with a string`.

function search(query, items) {
  return items.map((i) => i.matches(query));
}
1 Like