* Number#times(iterator[,context]) -> Number * - iterator (Function): An iterator function to call. * - context (Object): An optional context (`this` value) to use when * calling `iterator`. * * Calls `iterator` the specified number of times, passing in a number as * the fi
(iterator, context)
| 67 | * // -> 6 (e.g., 0 + 1 + 2 + 3) |
| 68 | **/ |
| 69 | function times(iterator, context) { |
| 70 | $R(0, this, true).each(iterator, context); |
| 71 | return this; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Number#toPaddedString(length[, radix]) -> String |