Difference between revisions of "Floor"

From MiniScript Wiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 
<c>floor</c> Returns the "floor", i.e. closest whole number less than or equal to the given number.
 
<c>floor</c> Returns the "floor", i.e. closest whole number less than or equal to the given number.
 +
 +
See also: [[ceil]], [[round]]
  
 
=== Arguments ===
 
=== Arguments ===
Line 13: Line 15:
  
 
<ms>floor(42.9)    // returns 42</ms>
 
<ms>floor(42.9)    // returns 42</ms>
 
== See also ==
 
 
* [[ceil]]
 
* [[round]]
 
  
 
[[Category:Intrinsic Functions]]
 
[[Category:Intrinsic Functions]]
 
[[Category:Numeric Functions]]
 
[[Category:Numeric Functions]]

Latest revision as of 15:13, 25 March 2022

floor Returns the "floor", i.e. closest whole number less than or equal to the given number.

See also: ceil, round

Arguments

Parameter Name Type Meaning
x number, default 0 number to get the floor of

Example

floor(42.9)     // returns 42