How do I test for multiple .includes with Array.includes()
in my if statement? The below seems to work on one item, ie. slug-title-one
but ignores the second.
if (item.slug.includes('slug-title-one' || 'slug-title-13')) {
// checks for and displays if either
}