Javascript String white()

Description

Javascript String white()


/*/*  w  ww. ja va2 s  .co  m*/
 We Love colored Strings!
*/

String.prototype.white = function(){
 return "\x1B[1m" + this.toString() + "\x1B[22m";
}



PreviousNext

Related