Is there anyway to do this:
if (document.getElementById("x").value == 2 || document.getElementById("x").value == 3) {
//Do somthing
}
# Can I make it simple in some kind a way like this, I tried but it didn't work:
if (document.getElementById("x").value == 2 || 3) {
//Do somthing
}