/ Published in: ActionScript
Expand |
Embed | Plain Text
Array.prototype._implode = function() { /* * Implodes an array into a string */ var str:String=''; for(var i=0;i<this.length;i++){ str += this[i]; } return str; };// End Function
You need to login to post a comment.
