Fuzzy Match

This was writen with inspiration from Senocular’s array matcher on http://proto.layer51.com. It happened to be the first post I read on this NICE site. But yah, it’s 4:30 AM…

What this function does is compare any two… anythings… and tell you if they match. It loops through every element in every element, meaning that you can have massively constructed multidimensional arrays with objects in them with properties of arrays… whatever… and the function will return true or false if all the element match, even if they are out of order. For example:

[[1,2,3],[4,5,6],7]
[[4,7,6],7,[3,2,1]] will return true but

[1,2,3,4,5,6,7]
[1,2,3,4,5,[6,7]] will not.

[[1,“2”,3],[4,5,6],7]
[[4,7,6],7,[3,2,1]] won’t either because it type matches

I hope to write much more action script; while I’m quite familular with other langauges, I have just started AS.

ENJOY!