SoFunction
Updated on 2025-04-03

Methods in JavaScript to round numbers

This method returns a parameter smaller than or equal to the largest integer
grammar

( x ) ;

The following are the detailed information of the parameters:

  • x: a number

Return value:

Returns a number x that is less than or equal to the largest integer
example:

<html>
<head>
<title>JavaScript Math floor() Method</title>
</head>
<body>
<script type="text/javascript">

var value = (10.3);
("First Test Value : " + value ); 
 
var value = (30.9);
("<br />Second Test Value : " + value ); 

var value = (-2.9);
("<br />Third Test Value : " + value ); 

var value = (-2.2);
("<br />Fourth Test Value : " + value ); 
</script>
</body>
</html>

This will produce the following results:

First Test Value : 10
Second Test Value : 30
Third Test Value : -3
Fourth Test Value : -3