Floor
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
		
		
		
		
		
		
	
floor Returns the "floor", i.e. closest whole number less than or equal to the given number.
Arguments
| Parameter Name | Type | Meaning | 
|---|---|---|
| x | number, default 0 | number to get the floor of | 
Example
floor(42.9)     // returns 42

