Guard function to determine if value is an exact float (ie not 12 or 12.00)
const number_to_test = 22.25 isNonInteger(number_to_test) => true Copy
const number_to_test = 22.25 isNonInteger(number_to_test) => true
Guard function to determine if value is an exact float (ie not 12 or 12.00)