Skip to content
Advertisement

Get every nth element of array with a function of 2 arguments

I’ve been working on some challenges and this is one of the challenges I’ve been unable to get a solution of. This task is like this:

  • Write a function that takes an array (a) and a value (n) as arguments
  • Save every nth element in a new array
  • Return the new array

This is the output I’m expecting:

JavaScript

This is what I’ve tried to figure out, but that wasn’t it:

JavaScript

Advertisement

Answer

Beside the filtering solution, you could iterate and push each nth item to a new array. This approach does not visit all items, but only the nth ones.

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement