Ad
Code
Diff
  • const isDivisible = (n, x, y) => n % x == 0 && n % y == 0;
    
    • const isDivisible = (n, a, b) => n % a == 0 && n % b == 0;
    • const isDivisible = (n, x, y) => n % x == 0 && n % y == 0;