Skip to content

Instantly share code, notes, and snippets.

@niktariy
Created January 8, 2020 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save niktariy/40164857902d66d473804cffb34a36d9 to your computer and use it in GitHub Desktop.
Save niktariy/40164857902d66d473804cffb34a36d9 to your computer and use it in GitHub Desktop.
Regular function that return the result of an immediately invoked nested arrow function
function average() {
return (() => {
const length = arguments.length;
if (length == 0) return 0;
const numbers = Array.prototype.slice.call(arguments);
const sumReduceFn = function (a, b) { return a + Number(b) };
return numbers.reduce(sumReduceFn, 0) / length;
})();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment