Javascript String log(msg)
String.prototype.log = function (msg){ if(msg){//from w w w.j a va 2s .co m console.log(msg, this); } else { console.log(this); } }