Create a function that takes a number as an argument and returns the amount of digits it has.
FindDigitAmount(123) ➞ 3 FindDigitAmount(56) ➞ 2 FindDigitAmount(7154) ➞ 4 FindDigitAmount(61217311514) ➞ 11 FindDigitAmount(0) ➞ 1