Is it possible to have a variable be defined as two different things without using an array?
So for example:
var myVar = "asd" || "fgh" // or maybe it's "asd" && "fgh"?
var message = "asdtest"
var otherMessage = "fghtest"
if (message === myVar + "test") {
console.log("success!")
}
else if (otherMessage === myVar + "test") {
console.log("success!")
}