Are it's possible to make 'equals' like this
if(index==1|12|23|34|45|56){
//do
}
Or it's actually must use this:
if(index==1|index==12|index==23|index==34|index==45|index==56){
// do
}
But how if its many index there?
Please tell me?
|
Are it's possible to make 'equals' like this
Or it's actually must use this:
But how if its many index there? Please tell me? |
||||
|
|
|
If you don't want to use Array.indexOf you can test on an object (but this doesn't work on objects and types):
Or make a string: ( Again only works on string/number )
|
|||
|
|
|
An alternative is to use an array and
If your browser does not support |
|||||
|
|
No, that's not possible, but with a helper function, you can do something close:
Here is the implementation:
|
|||
|
|
Combine them into a single string and indexOf will automatically coerce the types! This also gets around the lack of Array.indexOf support in some older browsers!
Now, you might ask yourself...
Well that's easy! First list out all the states:
Then combine the word groups to reduce the code size by joining the starting letter of one word with the ending letter of another. Repeat until you can't combine them anymore.
Warning: doing this may get you labeled as a nutcase. |
|||
|
|