Number.prototype.square = function square() {
    return this * this;
};
6.square(); // 36