Possible Duplicate:
Comparing Arrays of Objects in JavaScript
How to compare two array of strings using javascript ?
How to compare two array of strings using javascript ? |
||||
|
|
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.
and here we go:
EDIT: thanks to aioobe for the hint, i got this from here a while ago. |
|||||||
|
|
If you want to determine if 2 arrays of strings are identical- each contains only the same elements, in the same order- you can use a simpler construction.
|
||||
|
|
|
There are no function created for comparing string arrays as writing your own as easy enough:
|
||||
|
Take a look at the answer to this question. |
|||
|
|
|
There is already a similar question in SO at http://stackoverflow.com/questions/1773069/using-jquery-to-compare-two-arrays, check it out |
|||
|
|
|
Using Jquery its very easy
If the above returns true, both the arrays are same even if the elements are in different order. |
|||
|
|