var numOfStrings = function(patterns, word) { let count = 0; for(ele of patterns) { if(word.includes(ele)) count++ } return count };
금방 후딱 푼 문제였다. includes 메소드를 이용하면 쉽게 해결가능하다.