Create a function that returns true if an integer is evenly divisible by 5, and false otherwise.
true
false
divisibleByFive(5) ➞ true divisibleByFive(-55) ➞ true divisibleByFive(37) ➞ false
return