Is there a simpler way to rewrite the following condition in JavaScript?
if ((x == 1) || (x == 3) || (x == 4) || (x == 17) || (x == 80)) {...}
You can also use the Array.includes the simplest way...
if([1,3,4,17,80].includes(x)){ console.log(true); // rest of the code }