जावास्क्रिप्ट मैथ ऑब्जेक्ट हमें संख्याओं पर गणितीय संचालन करने की अनुमति देता है। इसमें गणितीय स्थिरांक और कार्यों के लिए गुण और विधियाँ हैं।
जावास्क्रिप्ट मैथ ऑब्जेक्ट को इसके कुछ गुणों और विधियों के साथ लागू करने के लिए कोड निम्नलिखित है -
उदाहरण
<!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 Math Object</h1> <div class="sample"></div> <div style="font-weight: bold; color: black;" class="result"></div> <button class="Btn">CLICK HERE</button> <h3> Click on the above button to see some math Object methods </h3> <script> let sampleEle = document.querySelector(".sample"); document.querySelector(".Btn").addEventListener("click", () => { sampleEle.innerHTML = 'Math.round(7.7) = ' + Math.round(7.7) + '<br>'; sampleEle.innerHTML += 'Math.sqrt(121) = ' + Math.sqrt(121) + '<br>'; sampleEle.innerHTML += 'Math.pow(4,4) = ' + Math.pow(4,5) + '<br>'; }); </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -