Исходный код этого примера:
<script language="JavaScript">
<!--
var a = new Date();
Object.prototype.year = a.getYear();
Object.prototype.month = a.getMonth()+1;
Object.prototype.date = a.getDate();
function meth(){
  var s = "Год: " + Object.year +
           "  Месяц: " + Object.month +
           "  Число: " + Object.date;
  alert (s);
}
Object.prototype.method = meth;
var obj = new Object();
obj.method();
//-->
</script>