Language Basics JavaScript DHTML

/*
JavaScript Bible, Fourth Edition
by Danny Goodman 
John Wiley & Sons CopyRight 2001
*/


String Object Prototype

function makeItHot() {
    return "" + this.toString() + ""
}
String.prototype.hot = makeItHot



document.write("

This site is on " + "FIRE".hot() + "!!

")