Last updated 4 years ago
Was this helpful?
const isDivideBy = (number, a, b) => Boolean(number % a === 0 && number % b === 0);