0
GGGiovanny Gongora
Sums all the numbers between 1 and n.
0 Comments
const sumN = (n: number) => (n * (n + 1)) / 2;