Say, I have an object that looks like this:
const a = {
prop1: \"val1\",
prop2: \"val2\",
prop3: \"val3\",
prop4: \"val4\",
}
And I wan
You could map new objects and build a single object with Object.assign and spread syntax ....
const
a = { prop1: "val1", prop2: "val2", prop3: "val3", prop4: "val4" },
b = Object.assign(...Object.entries(a).map(([k, v]) => ({ ['something_' + k]: v })));
console.log(b);
You can do:
const a = {
prop1: "val1",
prop2: "val2",
prop3: "val3",
prop4: "val4",
};
const b = {};
Object.keys(a).forEach(k => b[`something_${k}`] = a[k]);
console.log(b);
Here is an example with reduce
if your point is not to use for
or forEach
.
const a = {
prop1: "val1",
prop2: "val2",
prop3: "val3",
prop4: "val4",
}
const transformKeys = obj => Object.keys(obj).reduce((acc, key) => (acc[`something_${key}`] = obj[key], acc), {});
const b = transformKeys(a);
console.log(b);