Is there a way in JavaScript to compare values from one array and see if it is in another array?
Similar to PHP's in_array function?
|
Is there a way in JavaScript to compare values from one array and see if it is in another array? Similar to PHP's |
||||
|
|
|
No, it doesn't have one. For this reason most popular libraries come with one in their utility packages. Check out jQuery's inArray and Prototype's Array.indexOf for examples. jQuery's implementation of it is as simple as you might expect:
If you are dealing with a sane amount of array elements the above will do the trick nicely. EDIT: Whoops. I didn't even notice you wanted to see if an array was inside another. According to the PHP documentation this is the expected behavior of PHP's
The code posted by Chris and Alex does not follow this behavior. Alex's is the official version of Prototype's indexOf, and Chris's is more like PHP's
And this my test of the above on it:
Note that I intentionally did not extend the Array prototype as it is generally a bad idea to do so. |
||||
|
|
|
There are even some handy usage snippets for your scripting pleasure. |
|||||||||||
|
|
If the indexes are not in sequence, or if the indexes are not consecutive, the code in the other solutions listed here will break. A solution that would work somewhat better might be:
And, as a bonus, here's the equivalent to PHP's array_search (for finding the key of the element in the array:
|
|||
|
|
|
There is not a native function for this. |
|||
|
|
|
If you only want to check if a single value is in an array, then Paolo's code will do the job. If you want to check which values are common to both arrays, then you'll want something like this (using Paolo's inArray function):
This wil return an array of values that are in both EDIT: See Paolo's Edited Code for the solution to your problem. :) |
||||
|
|
If you need all the PHP available parameters, use this:
|
||||
|
|
|
There is a project called PHPJS. It implements PHP functions in JavaScript and there is the in_array() function. You can use it exactly as you use in PHP, including the third argument that checks the data types. Two examples of use:
|
||||
|
|
|
You can do it with underscore.js. |
||||
|
|
|
With Dojo Toolkit, you would use |
||||
|
|
|
||||
|
|