Question: Write a function named sumEveryNth that accepts an array of numbers, and a number n, and returns the sum of every nth number in the

Write a function named sumEveryNth that accepts an array of numbers, and a number n, and returns the sum of every nth number in the array. Use the Array.forEach() method.

Examples:

sumEveryNth([2, 3, 5, 7, 11, 13], 2) -> 23

sumEveryNth([2, 3, 5, 7, 11, 13], 3) -> 18

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!