Search
The function isDivisible should determine whether the given number is divisible by 6 or not.
isDivisible
6
If the number is divisible by 6, return true. Otherwise, return false.
true
false.