Javascript String red()

Description

Javascript String red()

String.prototype.red = function(){
 return "\x1B[31m" + this.toString() + "\x1B[39m";
}



PreviousNext

Related