Javascript String concat2(str)
String.prototype.concat2 = function(str) { if(isEmpty(this)) { return ""; } else {//from www . j a va 2 s . co m return this.concat(str); } }