जावास्क्रिप्ट में दिनांक स्वरूपों को लागू करने के लिए, कोड इस प्रकार है -
उदाहरण
<!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; } </style> </head> <body> <h1>Date Format</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above button to see the different date formats</h3> <script> let fillEle = document.querySelector(".sample"); let date = []; date.push(new Date('2020-01-20')); date.push(new Date('2020-02')); date.push(new Date('2020')); date.push(new Date("2015-03-25T12:00:00Z")); fillEle.innerHTML = date + '<br>'; document.querySelector(".Btn").addEventListener("click", () => { date.forEach(item=>{ fillEle.innerHTML += item + '<br>' }) }); </script> </body> </html>
आउटपुट
"यहां क्लिक करें" बटन पर क्लिक करने पर -