Найдите несколько JavaScript

// if you want to find multiple values in array
// You have to use 'filter' method

// Example:
let names= ["Style","List","Raw"];
let results= names.filter(x => x.includes("s"));
console.log(results); //["List"]
Repulsive Raven