Math.random() फ़ंक्शन का उपयोग 0 और 1 के बीच एक यादृच्छिक फ़्लोटिंग-पॉइंट संख्या उत्पन्न करने के लिए किया जाता है।
Math.random() फ़ंक्शन के लिए कोड निम्नलिखित है -
उदाहरण
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; color: red; } </style> </head> <body> <h1>JavaScript Random</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to generate a random number between 1 to 10 </h3> <script> let sampleEle = document.querySelector('.sample'); document.querySelector('.Btn').addEventListener('click',()=>{ let num = Math.floor((Math.random()*10))+1; sampleEle.innerHTML = 'Number generated = ' + num; }) </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -