Fix (number) DescriptionConverts a real number to an integer. Returns the closest integer less than the number if it is greater than or equal to 0. If it is less than 0, it returns the closest integer greater than the number. Example<cfoutput> The fix of 4 is #fix(4)# The fix of -4 is #fix(-4)# </cfoutput> |