Rounds a number to a specified amount of digits.
Math.round()
and template literals to round the number to the specified number of digits.decimals
, to round to an integer.const round = (n, decimals = 0) =>
Number(`${Math.round(`${n}e${decimals}`)}e-${decimals}`);
round(1.005, 2); // 1.01
JavaScript, Math
Creates an array of numbers in the arithmetic progression, starting with the given positive integer and up to the specified limit.
JavaScript, Math
Generates primes up to a given number, using the Sieve of Eratosthenes.
JavaScript, Math
Converts a number to an array of digits, removing its sign if necessary.