Files
30-seconds-of-code/snippets/object-to-pairs.md
Stefan Feješ b848906fe5 fix naming
2017-12-17 15:41:31 +01:00

279 B

Object to key-value pairs

Use Object.keys() and Array.map() to iterate over the object's keys and produce an array with key-value pairs.

const objectToPairs = obj => Object.keys(obj).map(k => [k, obj[k]]);
// objectToPairs({a: 1, b: 2}) -> [['a',1],['b',2]])