Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
Array.forEach( function(currentValue, index, arr) {
	...
} );


Function Proto-type 2: simplified version

Code Block
Array.forEach( function(currentValue) {
	...
} );

...