Created
March 16, 2018 14:40
-
-
Save nesk/d3768f6cec798de70270f414edfc174d to your computer and use it in GitHub Desktop.
Mapping objects in JavaScript (ES2015)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const data = { | |
a: 1, | |
b: 2, | |
}; | |
const newData = Object.keys(data) | |
.map(key => ({ [`_${key}`]: data[key] + 1 })) | |
.reduce((obj, item) => Object.assign(obj, item), {}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment