Here you can find the source of times(iterator, context)
/**//from www. jav a 2s. c o m * from http://www.prototypejs.org/api/number/times * @param iterator * @param context */ Number.prototype.times = function(iterator, context) { for (var i = 0; i < this; i++) iterator.call(context, i); }; /** * Some sugar for easy/readable conversion to milliseconds * * (2).hours() -> 7200000 ms */ Number.prototype.seconds = function() { return this * 1000; }; Number.prototype.minutes = function() { return this * 1000 * 60; }; Number.prototype.hours = function() { return this * 1000 * 3600; }; Number.prototype.days = function() { return this * 1000 * 3600 * 24; };
Number.prototype.times = function (func) { var i; for (i = 0; i < this; i += 1) { func(); }; function random(min, max) { var floor = +min, ceil = +max; ...
Number.prototype.times = function(func, scope) { var i, v, _results; v = this.valueOf(); i = 0; _results = []; while (i < v) { func.call(scope || window, i); _results.push(i++); return _results; };
Number.prototype.times = function(handler) { var index = 0; while(index < this) handler(index++); return this };
Number.prototype.times = function(iterator) { var index = 0; while(index < this) iterator(index++); return this };
Number.prototype.times = function (iterator) { for (var i = 0; i < this; i++) { iterator(i); };
Number.prototype.times = function(iterator, context) { for(var i = 0; i < this; i++) { iterator.call(context, i); return i; };
"use strict"; Number.prototype.times = function(action) { var i; for (i = 1; i <= this; i++) { action(); }; (5).times(function () { console.log("OMG!"); });
Number.prototype.times = function(action) { var counter = this while (counter-- > 0) action()
Number.prototype.times = function(args) { var args = Array.prototype.slice.apply(arguments); for(var i = 0; i < this; i++) { args[0].apply(null, args.slice(1)) }; function Bye(num) {console.log(num)}; function Hello() {console.log("hello");} function Something(num, num2) {console.log(num, num2);} ...