Math.trunc()
ไม่เหมือนกับ Math.floor() , Math.ceil() และ Math.round() , Math.trunc() method ลบ เศษส่วน และแจกเฉพาะ จำนวนเต็ม ส่วนหนึ่ง. ไม่สนใจปัดเศษ ตัวเลขเป็นจำนวนเต็มที่ใกล้ที่สุด มันไม่ได้สังเกตด้วยซ้ำว่าค่านั้นเป็นบวกหรือลบ หน้าที่ของมันคือการตัดส่วนที่เป็นเศษส่วน .เท่านั้น .
ไวยากรณ์
Math.trunc(x);
พารามิเตอร์ - Math.trunc() ใช้ตัวเลขเป็นอาร์กิวเมนต์และ ตัดทอน เศษส่วน .
ในตัวอย่างต่อไปนี้ Math.trunc() วิธีตัดค่าเศษส่วนของจำนวนบวกที่ให้มา
ตัวอย่าง
<html> <body> <script> var val1 = Math.trunc("1.414"); var val2 = Math.trunc("0.49"); var val3 = Math.trunc("8.9"); document.write(val1); document.write("</br>"); document.write(val2); document.write("</br>"); document.write(val3); </script> </body> </html>
ผลลัพธ์
1 0 8
ใน Math.trunc() . ต่อไปนี้ ฟังก์ชั่นตัด ค่าเศษส่วน ของจำนวนลบและแสดงค่าจำนวนเต็มในผลลัพธ์
ตัวอย่าง
<html> <body> <script> var val1 = Math.trunc("-1.414"); var val2 = Math.trunc("-0.49"); var val3 = Math.trunc("-8.9"); document.write(val1); document.write("</br>"); document.write(val2); document.write("</br>"); document.write(val3); </script> </body> </html>
ผลลัพธ์
-1 0 -8