Reduce array of object to totals by property object The Next CEO of Stack OverflowDetecting an undefined object propertyWhat is the most efficient way to deep clone an object in JavaScript?How can I merge properties of two JavaScript objects dynamically?How do I remove a property from a JavaScript object?How do I check if an array includes an object in JavaScript?Sort array of objects by string property valueHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?Iterate through object propertiesFor-each over an array in JavaScript?
Would a completely good Muggle be able to use a wand?
What connection does MS Office have to Netscape Navigator?
What is the difference between "hamstring tendon" and "common hamstring tendon"?
How to set page number in right side in chapter title page?
What was Carter Burkes job for "the company" in "Aliens"?
Why doesn't UK go for the same deal Japan has with EU to resolve Brexit?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
When "be it" is at the beginning of a sentence, what kind of structure do you call it?
"Eavesdropping" vs "Listen in on"
Where do students learn to solve polynomial equations these days?
Help understanding this unsettling image of Titan, Epimetheus, and Saturn's rings?
I dug holes for my pergola too wide
Is it convenient to ask the journal's editor for two additional days to complete a review?
Reference request: Grassmannian and Plucker coordinates in type B, C, D
How did Beeri the Hittite come up with naming his daughter Yehudit?
Regression vs Random Forest - Combination of features
Does destroying a Lich's phylactery destroy the soul within it?
Is a distribution that is normal, but highly skewed, considered Gaussian?
Why don't programming languages automatically manage the synchronous/asynchronous problem?
New carbon wheel brake pads after use on aluminum wheel?
Aggressive Under-Indexing and no data for missing index
How to use ReplaceAll on an expression that contains a rule
Towers in the ocean; How deep can they be built?
Can I use the word “Senior” as part of a job title directly in German?
Reduce array of object to totals by property object
The Next CEO of Stack OverflowDetecting an undefined object propertyWhat is the most efficient way to deep clone an object in JavaScript?How can I merge properties of two JavaScript objects dynamically?How do I remove a property from a JavaScript object?How do I check if an array includes an object in JavaScript?Sort array of objects by string property valueHow to check if an object is an array?How do I remove a particular element from an array in JavaScript?Iterate through object propertiesFor-each over an array in JavaScript?
I'm looking for a smart ES6 way to reduce array of objects into totals-by-property-object.
for a sample data:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
following code:
const res = src.reduce((totals,item) => Object.keys(item).forEach(weekday => totals[weekday] += item[weekday]),)
throws an error:
Uncaught TypeError: Cannot read property 'mon' of undefined
even if reduce is initialized with mon:0, tue:0 ... instead of .
Is there a non-for-loop solution?
p.s. expected output is an object where each property is a sum of array objects by that property, e.g. mon:6, tue:3, wed:5, thu:5, fri:8, sat:0, sun:10 in my case
javascript ecmascript-6
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm looking for a smart ES6 way to reduce array of objects into totals-by-property-object.
for a sample data:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
following code:
const res = src.reduce((totals,item) => Object.keys(item).forEach(weekday => totals[weekday] += item[weekday]),)
throws an error:
Uncaught TypeError: Cannot read property 'mon' of undefined
even if reduce is initialized with mon:0, tue:0 ... instead of .
Is there a non-for-loop solution?
p.s. expected output is an object where each property is a sum of array objects by that property, e.g. mon:6, tue:3, wed:5, thu:5, fri:8, sat:0, sun:10 in my case
javascript ecmascript-6
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I'm looking for a smart ES6 way to reduce array of objects into totals-by-property-object.
for a sample data:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
following code:
const res = src.reduce((totals,item) => Object.keys(item).forEach(weekday => totals[weekday] += item[weekday]),)
throws an error:
Uncaught TypeError: Cannot read property 'mon' of undefined
even if reduce is initialized with mon:0, tue:0 ... instead of .
Is there a non-for-loop solution?
p.s. expected output is an object where each property is a sum of array objects by that property, e.g. mon:6, tue:3, wed:5, thu:5, fri:8, sat:0, sun:10 in my case
javascript ecmascript-6
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I'm looking for a smart ES6 way to reduce array of objects into totals-by-property-object.
for a sample data:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
following code:
const res = src.reduce((totals,item) => Object.keys(item).forEach(weekday => totals[weekday] += item[weekday]),)
throws an error:
Uncaught TypeError: Cannot read property 'mon' of undefined
even if reduce is initialized with mon:0, tue:0 ... instead of .
Is there a non-for-loop solution?
p.s. expected output is an object where each property is a sum of array objects by that property, e.g. mon:6, tue:3, wed:5, thu:5, fri:8, sat:0, sun:10 in my case
javascript ecmascript-6
javascript ecmascript-6
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 2 days ago
user11154868
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 2 days ago
user11154868user11154868
384
384
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
user11154868 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
You need to return totals after you modify it:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
add a comment |
You need to return totals as accumulator for reduce.
If you have allways all days in the objects and you don't mind to mutate the first object, you could work without a start object.
const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);add a comment |
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
user11154868 is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55418223%2freduce-array-of-object-to-totals-by-property-object%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
You need to return totals after you modify it:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
add a comment |
You need to return totals after you modify it:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
add a comment |
You need to return totals after you modify it:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);You need to return totals after you modify it:
const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);const src = [mon:1,tue:0,wed:3,thu:5,fri:7,sat:0,sun:4, mon:5,tue:3,wed:2,thu:0,fri:1,sat:0,sun:6];
const res = src.reduce((totals, item) => 0) + item[weekday])
return totals;
, );
console.log(res);answered 2 days ago
Ori DroriOri Drori
81.4k138997
81.4k138997
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
add a comment |
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
3
3
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
I can't believe it was that close. Thanks a lot.
– user11154868
2 days ago
add a comment |
You need to return totals as accumulator for reduce.
If you have allways all days in the objects and you don't mind to mutate the first object, you could work without a start object.
const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);add a comment |
You need to return totals as accumulator for reduce.
If you have allways all days in the objects and you don't mind to mutate the first object, you could work without a start object.
const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);add a comment |
You need to return totals as accumulator for reduce.
If you have allways all days in the objects and you don't mind to mutate the first object, you could work without a start object.
const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);You need to return totals as accumulator for reduce.
If you have allways all days in the objects and you don't mind to mutate the first object, you could work without a start object.
const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);const
src = [ mon: 1, tue: 0, wed: 3, thu: 5, fri: 7, sat: 0, sun: 4 , mon: 5, tue: 3, wed: 2, thu: 0, fri: 1, sat: 0, sun: 6 ],
res = src.reduce((totals, item) =>
(Object.keys(item).forEach(d => totals[d] += item[d]), totals));
console.log(res);answered 2 days ago
Nina ScholzNina Scholz
195k15107178
195k15107178
add a comment |
add a comment |
user11154868 is a new contributor. Be nice, and check out our Code of Conduct.
user11154868 is a new contributor. Be nice, and check out our Code of Conduct.
user11154868 is a new contributor. Be nice, and check out our Code of Conduct.
user11154868 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55418223%2freduce-array-of-object-to-totals-by-property-object%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
