JavaScript Reference/Javascript Methods/floor — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 08:22, 26 мая 2010
"floor()" Example
<html>
<body>
<button onclick="alert(Math.floor(1.1));">FLOOR</button>
</body>
</html>
"floor()" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |Math |
+----------------+--------------------------------------------------------------+
"floor()" Syntax, Parameters and Note
Note:
Rounds the number down to the nearest integer.
Syntax:
Math.floor(param1)
Parameters:
param1 Required; the number to convert.