jgildart wrote:
>
> <p>what i want to do is get all the elements inside of the "all" variable
> EXCLUDING lets say... all the elements inside the "girls" variable so that
> i can work with the "guys" and the "acc" elements.</p>
>
var filtered = all.filter(function(item){
return !girls.contains(item);
});
--
View this message in context:
http://n2.nabble.com/Array-Manipulation-tp1092085p1092263.html
Sent from the MooTools Users mailing list archive at Nabble.com.
