Help for this page

Select Code to Download


  1. or download this
    Number.prototype.foo = function () {alert("Hi!")};
    x = 5;
    x.foo();
    
  2. or download this
    Number.prototype.foo = function () {alert("Hi!")};
    5.foo();