У меня есть массив строк и другая строка. Есть ли простой способ проверить, заканчивается ли моя единственная строка одной из строк в массиве строк?
const strings = [
'foo',
'bar',
'test'
];
if('hi, this is a test'.endsWith(...strings)) { // I know that this isn't right but this is the idea
console.log("String ends with one of the strings !");
}