Number.prototype.times = function(f) { for(var i = 0; i < this; i++) f.call(this, i); }; 3..times(function(n) { console.log(n + " привет"); });