Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

ฉันจะตรวจสอบได้อย่างไรว่าตัวเลขเป็นทศนิยมหรือจำนวนเต็ม - JavaScript


สมมติว่าเรามีตัวแปรดังต่อไปนี้ −

var value1 = 10;
var value2 = 10.15;

ใช้เงื่อนไข Number() เพื่อตรวจสอบว่าตัวเลขเป็นทศนิยมหรือจำนวนเต็ม −

Number(value) === value && value % 1 !== 0;
}

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

function checkNumberIfFloat(value) {
   return Number(value) === value && value % 1 !== 0;
}
var value1 = 10;
var value2 = 10.15;
if (checkNumberIfFloat(value1) == true)
   console.log("The value is float=" + value1);
else
   console.log("The value is not float=" + value1);
if (checkNumberIfFloat(value2) == true)
   console.log("The value is float=" + value2);
else
   console.log("The value is not float=" + value2);

ในการรันโปรแกรมข้างต้น คุณต้องใช้คำสั่งต่อไปนี้ -

node fileName.js.

ที่นี่ ชื่อไฟล์ของฉันคือ demo218.js

ผลลัพธ์

ผลลัพธ์จะเป็นดังนี้ −

PS C:\Users\Amit\JavaScript-code> node demo218.js
The value is not float=10
The value is float=10.15