w3resource

JavaScript: Execute a provided function once for each array element, starting from the array's last element

JavaScript fundamental (ES6 Syntax): Exercise-76 with Solution

Write a JavaScript program to execute a provided function once for each array element, starting with the array's last element.

  • Use Array.prototype.slice() to clone the given array and Array.prototype.reverse() to reverse it.
  • Use Array.prototype.forEach() to iterate over the reversed array.

Sample Solution:

JavaScript Code:

//#Source https://bit.ly/2neWfJ2 
const forEachRight = (arr, callback) =>
  arr
    .slice(0)
    .reverse()
    .forEach(callback);
forEachRight([1, 2, 3, 4], val => console.log(val));

Sample Output:

4
3
2
1

Flowchart:

flowchart: Execute a provided function once for each array element, starting from the array's last element

Live Demo:

See the Pen javascript-basic-exercise-76-1 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript program to compute the new ratings between two or more opponents using the Elo rating system
Next: Write a JavaScript program to iterate over all own properties of an object, running a callback for each one.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

JavaScript: Tips of the Day

Parse an HTTP Cookie header string and return an object of all cookie name-value pairs

Example:

const parseCookie = str =>
  str
    .split(';')
    .map(v => v.split('='))
    .reduce((acc, v) => {
      acc[decodeURIComponent(v[0].trim())] = decodeURIComponent(v[1].trim());
      return acc;
    }, {});
console.log(parseCookie('foo=bar; equation=E%3Dmc%5E2')); // { foo: 'bar', equation: 'E=mc^2' } 

Output:

[object Object] {
  equation: "E=mc^2",
  foo: "bar"
} 

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook