Skip to content

Instantly share code, notes, and snippets.

@niktariy
Created September 25, 2019 17:30
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/13c232dc222de7d962bee09fe08b438c to your computer and use it in GitHub Desktop.
Save niktariy/13c232dc222de7d962bee09fe08b438c to your computer and use it in GitHub Desktop.
Function overloading with arrow functions
const average = () => {
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