मान लें कि हमें प्रॉम्प्ट के साथ दो मान मिल रहे हैं -
var firstvalue = parseInt(prompt("Enter the value1")); var secondvalue = parseInt(prompt("Enter the value2"));
उदाहरण
निम्नलिखित कोड है -
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <body> </body> <script> var firstvalue = parseInt(prompt("Enter the value1")); var secondvalue = parseInt(prompt("Enter the value2")); if (firstvalue * secondvalue > 50) document.write("<h1>Result is correct</h1>"); else document.write("<h1>Result is not correct</h1>"); </script> </html>
उपरोक्त प्रोग्राम को चलाने के लिए, फ़ाइल का नाम anyName.html (index.html) सेव करें। फ़ाइल पर राइट क्लिक करें और वीएस कोड संपादक में "लाइव सर्वर के साथ खोलें" विकल्प चुनें।
आउटपुट इस प्रकार है -
पहला मान दर्ज करें। मैं 10 दर्ज करने जा रहा हूँ -
OK बटन पर क्लिक करने के बाद, आपको दूसरा मान दर्ज करना होगा -
दूसरा मान दर्ज करें। मैं फिर से 10 में प्रवेश करने जा रहा हूँ।
OK बटन पर क्लिक करने के बाद आपको रिजल्ट मिल जाएगा। आउटपुट इस प्रकार है -