I have an array of urls links:
const urlLinks = [`http://1`,
`http:/2`,
`http://3`,
`http://4`,
`http://5`
]
How would I write an if
statement, that would be executed, when at least one of the links in the array is present?
if (URL === urlLinks) {