JavaScript | Math.trunc( ) Function
The Math.trunc() function in JavaScript is used to return the integer part of a floating-point number by removing the fractional digits. In other words, Math.trunc() function cuts off the dot and the digits to the right of it.
Syntax:
Math.trunc(value)
Parameters: This function accepts a single parameter value . It is the floating-point number which is to be sent to the Math.trunc() function.
Return Value: The Math.trunc() function returns the integer part of the given number.
Below example illustrates the Math.trunc() function in JavaScript:
- Example 1: When a positive number of float type is passed as a parameter:
<scripttype="text/javascript">document.write(Math.trunc(15.56));</script>chevron_rightfilter_noneOutput:
15
- Example 2: When a negative number of float type is passed as a parameter:
[/sourcecode]
Output:
-15
- Example 3: When a positive number between 0 and 1 is passed as a parameter:
<scripttype="text/javascript">document.write(Math.trunc(0.236));</script>chevron_rightfilter_noneOutput:
0
- Example 4: When a negative number between 0 and 1 is passed as a parameter:
<scripttype="text/javascript">document.write(Math.trunc(-0.236));</script>chevron_rightfilter_noneOutput:
0
Supported Browsers: The browsers supported by JavaScript Math.trunc( ) Function are listed below:
- Google Chrome
- Internet Explorer
- Firefox
- Opera
- Safari
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- JavaScript | Function Apply
- JavaScript | toExponential() Function
- JavaScript | Array some() function
- JavaScript | Function Definitions
- JavaScript | Function Parameters
- JavaScript | String() Function
- JavaScript | toString( ) function
- JavaScript | Math.abs( ) function
- JavaScript | Math.pow( ) Function
- JavaScript | toFixed( ) Function
- JavaScript | Symbol.for() function
- Javascript | Number() Function
- JavaScript | Array every() function
- JavaScript | Math.E() function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
- Example 3: When a positive number between 0 and 1 is passed as a parameter:



