小数点を切捨てるには、Math.floor()を使います。
<script>
var a = Math.floor(2.9999);
alert(a); // '2'と表示
</script>

コメントする