Create a function that, given a positive integer n, returns the number of trailing zeroes in n!.
trailingZeroes(6) ➞ 1
// factorial(6) = 720
trailingZeroes(30) ➞ 7
// factorial(30) = 265252859812191058636308480000000
n! = n * (n-1) * (n-2) * ... * 2 * 1