Returns the value rounded down. Optionally the number of decimal digits can be defined.
double Floor(double/int value; [int digits])
| value | A number. | 
| digits | The number of decimal digits in the return value. Negative numbers are also supported. | 
Example
Floor(735.9; -1)
Returns 730.
