Files
30-seconds-of-code/snippets/sumN.md
2020-10-08 16:52:55 +03:00

251 B

title, tags
title tags
sumN math,beginner

Sums all the numbers between 1 and n.

  • Use the formula (n * (n + 1)) / 2 to get the sum of all the numbers between 1 and n.
const sumN = n => (n * (n + 1)) / 2;
sumN(100); // 5050