Challenge 4: Check If a Number Is Divisible by Another
In this challenge, you are required to check if a number x is divisible by a number y.
We'll cover the following...
Problem Statement
Implement a function named isDivisible
that receives two parameters (named x
and y
) and only ...