Skip to content

Instantly share code, notes, and snippets.

@vdeturckheim
Created June 21, 2018 16:37
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 vdeturckheim/1814f37746485a1fd8cb227995f743ec to your computer and use it in GitHub Desktop.
Save vdeturckheim/1814f37746485a1fd8cb227995f743ec to your computer and use it in GitHub Desktop.
function sum(a: number[]): number {
return a.reduce((x, y) => x + y, 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment