Digitize number

JavaScript, Math · Oct 18, 2020

Converts a number to an array of digits, removing its sign if necessary.

const digitize = n => [...`${Math.abs(n)}`].map(i => parseInt(i));

digitize(123); // [1, 2, 3]
digitize(-123); // [1, 2, 3]

More like this

  • Arithmetic progression

    Creates an array of numbers in the arithmetic progression, starting with the given positive integer and up to the specified limit.

    JavaScript, Math · Oct 13, 2021

  • Powerset

    Returns the powerset of a given array of numbers.

    JavaScript, Math · Sep 27, 2021

  • Greatest common divisor

    Calculates the greatest common divisor between two or more numbers/arrays.

    JavaScript, Math · Dec 29, 2020