0
0
GGGiovanny Gongora
Checks if the first numeric argument is divisible by the second one.
const isDivisible = (dividend: number, divisor: number) => dividend % divisor === 0;
0
0
GGGiovanny Gongora
Checks if the first numeric argument is divisible by the second one.
const isDivisible = (dividend: number, divisor: number) => dividend % divisor === 0;