In SQL Server, I could say:
WHERE X IN(1,2)
How would you rewrite the following in JavaScript:
if (X==1 || X==2) {}
|
In SQL Server, I could say:
How would you rewrite the following in JavaScript:
|
|||||||||
|
|
Try using an array, and then its
|
|||||
|
|
The javascript in-operator
can be written as
|
|||
|
|
|
There's no silver bullet. There will be a few gotchas. If you do If you use the In this particular example you suggested, I would just go for the good old |
|||
|
|
|
Does this previous post help Javascript array contains |
|||
|
|
|
I know we have in_array() function in PHP, but I never heard of a similar function in JS. I think you gotta do it the old way:
function contains(a, obj) {
var i = a.length;
while (i--) {
if (a[i] === obj) {
return true;
}
}
return false;
}
|
|||
|
|
|
Function to convert the array into an object literal
You can call the function like
|
|||
|
|
Or, if you want to abstract it you could do it like this http://snook.ca/archives/javascript/testing_for_a_v function oc(a) { var o = {}; for(var i=0;i Still... not the most scalable thing to be doing |
|||||||
|
|
Just fun:
or self-explaining:
|
|||
|
|