Add forOwn and forOwnRight
This commit is contained in:
13
snippets/forOwn.md
Normal file
13
snippets/forOwn.md
Normal file
@ -0,0 +1,13 @@
|
||||
### forOwn
|
||||
|
||||
Iterates over all own properties of an object, running a callback for each one.
|
||||
|
||||
Use `Object.keys(obj)` to get all the properties of the object, `Array.forEach()` to run the provided function for each key-value pair. The callback receives three arguments - the value, the key and the object.
|
||||
|
||||
```js
|
||||
const forOwn = (obj, fn) => Object.keys(obj).forEach(key => fn(obj[key],key,obj));
|
||||
```
|
||||
|
||||
```js
|
||||
forOwn({foo: 'bar', a: 1}, v => console.log(v)); // 'bar', 1
|
||||
```
|
||||
13
snippets/forOwnRight.md
Normal file
13
snippets/forOwnRight.md
Normal file
@ -0,0 +1,13 @@
|
||||
### forOwnRight
|
||||
|
||||
Iterates over all own properties of an object in reverse, running a callback for each one.
|
||||
|
||||
Use `Object.keys(obj)` to get all the properties of the object, `Array.reverse()` to reverse their order and `Array.forEach()` to run the provided function for each key-value pair. The callback receives three arguments - the value, the key and the object.
|
||||
|
||||
```js
|
||||
const forOwnRight = (obj, fn) => Object.keys(obj).reverse().forEach(key => fn(obj[key],key,obj));
|
||||
```
|
||||
|
||||
```js
|
||||
forOwnRight({foo: 'bar', a: 1}, v => console.log(v)); // 1, 'bar'
|
||||
```
|
||||
@ -52,6 +52,8 @@ flatten:array
|
||||
flip:adapter,function
|
||||
forEachRight:array,function
|
||||
formatDuration:date,math,string,utility
|
||||
forOwn:object
|
||||
forOwnRight:object
|
||||
fromCamelCase:string
|
||||
functionName:function,utility
|
||||
functions:object,function
|
||||
|
||||
Reference in New Issue
Block a user