Update snippet descriptions
This commit is contained in:
@ -5,10 +5,12 @@ tags: object,intermediate
|
||||
|
||||
Applies a function against an accumulator and each key in the object (from left to right).
|
||||
|
||||
- Use `Object.keys(obj)` to iterate over each key in the object, `Array.prototype.reduce()` to call the apply the specified function against the given accumulator.
|
||||
- Use `Object.keys()` to iterate over each key in the object.
|
||||
- Use `Array.prototype.reduce()` to apply the specified function against the given accumulator.
|
||||
|
||||
```js
|
||||
const transform = (obj, fn, acc) => Object.keys(obj).reduce((a, k) => fn(a, obj[k], k, obj), acc);
|
||||
const transform = (obj, fn, acc) =>
|
||||
Object.keys(obj).reduce((a, k) => fn(a, obj[k], k, obj), acc);
|
||||
```
|
||||
|
||||
```js
|
||||
|
||||
Reference in New Issue
Block a user