Possible Duplicate:
array.contains(obj) in JavaScript
Something like:
if (mystring == "a" || mystring == "b" || mystring =="c")
I was hopping to do:
if (mystring in ("a", "b", "c"))
is it possible?
Something like:
I was hopping to do:
is it possible? |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
You could use
|
|||
|
|
|
Using indexOf is first thing that comes to mind, however you have to keep in mind, that there's no
Side note: as you can see by looking at inArray definition in jQuery source, writing your own indexOf replacement is pretty easy. So like I said - write your own method, copy-paste it from other libraries or just use those libs if you want to be able to use indexOf in every browser out there. |
||||
|
|
|
You could do it the old way
note that indexOf is a recent addition to the ECMA-262 standard; as such it may not be present in all browsers If you're going to use this with IE it will only work with version 9 or above |
|||
|
|
|
I think something like this:
|
|||
|
|
|
if (["a", "b", "c"].indexOf(mystring) != -1) { } Would be the best but it may no work on some browsers |
|||
|
|
|
You can use
So, you can check if indexOf returns -1. Similar for strings. |
|||
|
|
|
Something like
may work. |
|||
|
|
|
Your version is the fastest one for three chars, and the most readable. With a little more possible values, you could use something like this :
But that's mainly for fun... |
|||
|
|
|
Addtionally: you could create a String extension for the comparison:
For older browsers: this MDN page contains a shim for |
||||
|
|