Pankaj Kumar
Wednesday, January 4, 2012
Remove duplicate value from arrya using Action Script
var a:Array = ["1", "1", "3", "3"];
trace(a.filter(function(e, i, a) {
return a.indexOf(e) == i;
}, this));
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)