Parameter
This function returns the largest integer less than or equal to a specified number.
Integer
New in Adobe ColdFusion (2016 release).
Floor(n)
|
Parameter |
Description |
|---|---|
|
n |
A numeric value. |
<cfscript>
n=65.87;
writeDump(floor(n)); // produces the output 65
</cfscript>
Sign in to your account