Math.floor( x ) ;
|
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
document.write(Math.floor(-2)+"<br/>");
document.write(Math.floor(-2.56)+"<br/>");
document.write(Math.floor(2.56)+"<br/>");
document.write(Math.floor(7.2+9.3));
</script>
</body>
</html>
|