Пожалуйста, попробуйте:
if (/entertainments/.test(window.location.href) || /suggestions/.test(window.location.href)) {
//code here
console.log("Matches the req...");
}
Так как одно из них будет истинным, будет выполнено if-body (в данном случае console.log("Matches the req...");
)