Prototype of predefine types are READ-ONLY.
Example:
function Browser(name, version) {
this.name = name;
this.version = version;
this.aboutBrowser = function() {
document.write("Обозреватель: " + this.name + " " + this.version);
}
}
Number.prototype = Browser.prototype;
String..prototype = Browser.prototype;