
Added by thebman220 on April-29-2009, 11:47 pm
if (typeof String.prototype.reverse!="function") {
String.prototype.reverse=function() {
var str=this.split(/.??/);
for (var min=0,max=str.length-1; min<max; min++,max--) {
var temp=str[min];
str[min]=str[max];
str[max]=temp;
}
return str.join('');
}
}
Added by thebman220 on May-2-2009, 4:40 am
Added by thebman220 on April-5-2009, 1:48 pm
Added by thebman220 on January-29-2009, 3:15 am
Added by thebman220 on January-29-2009, 3:04 am
Added by thebman220 on January-3-2009, 6:25 pm