Apply new format to snippets and template
This commit is contained in:
@ -5,8 +5,8 @@ tags: function,intermediate
|
||||
|
||||
Iterates over a callback `n` times
|
||||
|
||||
Use `Function.call()` to call `fn` `n` times or until it returns `false`.
|
||||
Omit the last argument, `context`, to use an `undefined` object (or the global object in non-strict mode).
|
||||
- Use `Function.call()` to call `fn` `n` times or until it returns `false`.
|
||||
- Omit the last argument, `context`, to use an `undefined` object (or the global object in non-strict mode).
|
||||
|
||||
```js
|
||||
const times = (n, fn, context = undefined) => {
|
||||
@ -19,4 +19,4 @@ const times = (n, fn, context = undefined) => {
|
||||
var output = '';
|
||||
times(5, i => (output += i));
|
||||
console.log(output); // 01234
|
||||
```
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user