Number is divisible

JavaScript, Math · Sep 15, 2020

Checks if the first numeric argument is divisible by the second one.

  • Use the modulo operator (%) to check if the remainder is equal to 0.
const isDivisible = (dividend, divisor) => dividend % divisor === 0;
isDivisible(6, 3); // true

More like this

  • Greatest common divisor

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

    JavaScript, Math · Dec 29, 2020

  • Quotient and module of division

    Returns an array consisting of the quotient and remainder of the given numbers.

    JavaScript, Math · Oct 7, 2020

  • Copy sign to number

    Returns the absolute value of the first number, but the sign of the second.

    JavaScript, Math · Oct 7, 2020