Guard function to determine if value is an exact integer (ie not 12.001 but 12.00 is allowed)
const number_to_test_int = 22.000 isNumericInteger(number_to_test_int) => true Copy
const number_to_test_int = 22.000 isNumericInteger(number_to_test_int) => true
Guard function to determine if value is an exact integer (ie not 12.001 but 12.00 is allowed)