August 2003
Intermediate to advanced
1140 pages
68h 45m
English
Int
Int(number)Returns the closest integer smaller than the given number. Examples:
<cfoutput> -1: #Int(-1)#<br> -1.123: #Int(-1.123)#<br> -0.123: #Int(-0.123)#<br> 0: #Int(0)#<br> 0.123: #Int(0.123)#<br> 1: #Int(1)#<br> 1.123: #Int(1.123)# </cfoutput>