Number.prototype.round = function (decimals) {
var t = Math.pow(10, decimals || 0);
return Math.round(this * t) / t;
};
var t = Math.pow(10, decimals || 0);
return Math.round(this * t) / t;
};
var n1 = 2/3;
n1.round(2); // 0.67
var n2 = 12345;
n2.round(-3); // 12000
var n3 = 100/3;
n3.round(); // 33
n1.round(2); // 0.67
var n2 = 12345;
n2.round(-3); // 12000
var n3 = 100/3;
n3.round(); // 33