Mathオブジェクトのfloor()メソッドは、小数点以下を切り捨てます。
引数には数値を指定します。
文字列を指定すると NaN を返します。
空文字やnullを指定すると 0 を返します。
<script> document.write(Math.floor(3.1415) + "<br>"); //3 document.write(Math.floor(-3.1415) + "<br>"); //-4 document.write(Math.floor(1/5) + "<br>"); //1 document.write(Math.floor("こんにちは") + "<br>"); //NaN document.write(Math.floor("") + "<br>"); //0 document.write(Math.floor(null) + "<br>"); //0 </script>