screen_rotation
Copied to Clipboard
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Last Day of Month</title> </head> <body> <h1>Js Last Day of the Current Month</h1> <p id="lastDayOutput"></p> <script> var date = new Date(); // Get current date var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0); lastDay = lastDay.toLocaleDateString(); var lastDayOutput = document.getElementById('lastDayOutput'); lastDayOutput.textContent = "Last day of the current month: " + lastDay; </script> </body> </html>