JavaScript parseInt คือ คำสั่ง หรือ function สำหรับแปลงข้อความ หรือตัวอักษรที่ต้องการให้เป็นชนิดตัวเลข หรือแปลง String เป็น Int โดยคำสั่ง parseInt จะคืนค่าที่แปลงกับมาเป็นชนิดตัวเลข สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง JavaScript parseInt
<script>
var n1 = "4";
var n2 = "8";
var t = parseInt( n1 ) + parseInt( n2 );
console.log( "ใช้คำสั่ง parseInt ตัวแปร t = "+t );
total = n1 + n2;
console.log( "ไม่ใช้คำสั่ง parseInt ตัวแปร t = "+t );
</script>
ผลลัพธ์
ใช้คำสั่ง parseInt ตัวแปร t = 12
ไม่ใช้คำสั่ง parseInt ตัวแปร t = 48