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

ตั้งค่าการตรวจสอบ PIN ด้วย JavaScript หรือไม่


คุณสามารถตรวจสอบพินได้โดยใช้ความยาวและประเภทของพินจะต้องเป็นสตริง ฯลฯ

ตัวอย่าง

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

function simpleValidationForPin(pinValues) {
   if (!(typeof pinValues === "string" && !~pinValues.indexOf('.') && !isNaN(Number(pinValues)) && (pinValues.length === 2 || pinValues.length === 4))) {
      return false;
   } else {
      return true;
   }
}
if (simpleValidationForPin("0000.00") == true)
   console.log("This is a valid pin")
else
   console.log("This is not a valid pin")
if (simpleValidationForPin(66) == true)
   console.log("This is a valid pin")
else
   console.log("This is not valid pin")
if (simpleValidationForPin("4444") == true)
   console.log("This is a valid pin")
else
   console.log("This is not a valid pin")
if (simpleValidationForPin("66") == true)
   console.log("This is a valid pin")
else
   console.log("This is not valid pin")
if (simpleValidationForPin("666") == true)
   console.log("This is a valid pin")
else
   console.log("This is not a valid pin")

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

node fileName.js.

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

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้บนคอนโซล -

PS C:\Users\Amit\javascript-code> node demo254.js
This is not a valid pin
This is not a valid pin
This is a valid pin
This is a valid pin
This is not a valid pin