Say, I have an object that looks like this:
const a = {
prop1: \"val1\",
prop2: \"val2\",
prop3: \"val3\",
prop4: \"val4\",
}
And I wan
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);