Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
234 views
in Technique[技术] by (71.8m points)

javascript - `reduce` equivalent for summing values of an iterator

Is there an equivalent of Array.reduce to sum up values of an iterator?

Consider the below Map whose values method returns an iterator:

let subjectMarks = new Map([['eng', 78], ['math', 98], ['sci', 87]])
> subjectMarks.values()
[Map Iterator] { 78, 98, 87 }

How do I get the total marks i.e sum of subjectMarks values?

I know this can be achieved using a for...of loop but I am looking for a more "functional" approach, something similar to the sum function in Python or reduce method in Javascript.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...