Switch cases are usually like
Monday:
Tuesday:
Wednesday:
etc.
I would like to use ranges.
from 1-12:
from 13-19:
from 20-21:
from 22-30:
Is it possible? I'm using javascript/jquery by the way.
|
|
Switch cases are usually like
I would like to use ranges.
Is it possible? I'm using javascript/jquery by the way.
|
||
|
|
|
|
you could try abusing the switch fall through behaviour
which is very verbose or you could try this
this gets you the behaviour you would like. The reason i return |
|||
|
|
|
|
You can make interesting kludges. For example, to test a number against a range using a JavaScript switch, a custom function can be written. Basically have the function test a give n value and return it if it's in range. Otherwise returned undefined or some other dummy value.
This works in Google Chrome. I didn't test other browsers. |
||||||||||||
|
|
|
Nope, you need to use an if/else if series to do this. JavaScript isn't this fancy. (Not many languages are.) |
||
|
|
|
|
I think in IF statement would be better here... |
||
|
|