Skip to content

Instantly share code, notes, and snippets.

@vdeturckheim
Created July 11, 2018 13:51
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/ef97d242f7b10744a68ddca24ce315af to your computer and use it in GitHub Desktop.
Save vdeturckheim/ef97d242f7b10744a68ddca24ce315af to your computer and use it in GitHub Desktop.
export function sum(a: number[]): number {
return a.reduce((x, y) => x + y, 0);
}
export function run() {
for (let i = 0; i < 10000; ++i) {
sum([1, 2, 3, 4, 5, 6, 7, 8, 9])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment