Checks if the first numeric argument is divisible by the second one.
%
) to check if the remainder is equal to 0
.const isDivisible = (dividend, divisor) => dividend % divisor === 0;
isDivisible(6, 3); // true
Would you like to help us improve 30 seconds of code?Take a quick survey
JavaScript, Math
Returns the absolute value of the first number, but the sign of the second.
JavaScript, Math
Calculates the greatest common divisor between two or more numbers/arrays.
JavaScript, Math
Returns an array consisting of the quotient and remainder of the given numbers.