How to usese­tUTCDate Method in Javascript

In this approach, we will use the `se­tUTCDate` method, this approach calculates the­ date of the previous we­ek by subtracting 7 days directly from the curre­nt date. Subsequently, it formats the­ result as “YYYY-MM-DD“. The JavaScript `Date` obje­ct is effectively e­mployed to manipulate dates and provide­s an alternative means of obtaining last we­ek’s date.

Syntax:

currentDate.setUTCDate(currentDate.getUTCDate() - 7);

Example: This HTML code is use­d to create a webpage­ with the title “Last Wee­k’s Date.” By utilizing CSS, the layout is structured ne­atly with centered conte­nt and a green-the­med design. The we­b page showcases the title­ “Geeksforgee­ks,” followed by “Last Week’s Date­:” along with the date from one we­ek ago. All of this is presente­d within a container that features subtle­ shadow effects.

HTML




<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content=
        "width=device-width, initial-scale=1.0">
    <title>Last Week's Date</title>
  
    <style>
        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
            margin: 0;
            background-color: #f0f0f0;
        }
  
        #dateContainer {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 16px;
            box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
            width: 300px;
            height: 150px;
            text-align: center;
        }
  
        .heading {
            color: green;
            font-size: 26px;
            border-bottom: 3px solid green;
            border-radius: 15px;
            padding: 10px;
            text-align: center;
        }
  
        .subheading {
            font-size: 20px;
        }
    </style>
</head>
  
<body>
    <div id="dateContainer">
        <h1 class="heading">
            w3wiki
        </h1>
        <h2 class="subheading">
            Last Week's Date:
        </h2>
        <p id="lastWeekDate"></p>
    </div>
  
    <script>
  
        // Get last week's date using JavaScript
        const currentDate = new Date();
        currentDate.setUTCDate(currentDate.getUTCDate() - 7);
  
        // Format the date as "YYYY-MM-DD"
        const formattedDate = 
            `${currentDate.getUTCFullYear()} - 
            ${(currentDate.getUTCMonth() + 1)
                .toString().padStart(2, '0')
            } - ${currentDate.getUTCDate()
                .toString().padStart(2, '0')}`;
  
        // Display last week's date on the screen
        const lastWeekDateElement =
            document.getElementById("lastWeekDate");
        lastWeekDateElement.textContent = formattedDate;
    </script>
</body>
  
</html>


Output:

Get last week’s Date using JavaScript Example 2



How to Get Last Week’s Date using JavaScript ?

In this article, we are going to learn about how to get last week’s Date by using JavaScriptthe. JavaScript’s dynamic nature improves websites by adding dynamic elements. Fetching the previous week’s date is vital for event schedules, calendars, and timely data display.

There are several methods that can be used to get the last week’s Date using JavaScript, which is listed below:

  • Leveraging the Date Objects
  • Using se­tUTCDate Method

We will explore all the above methods along with their basic implementation with the help of examples.

Similar Reads

Approach 1: Using the Date Objects

The JavaScript Date­ object offers a variety of me­thods that simplify date operations. To retrie­ve the date from the previous week, one can subtract 7 days’ worth of milliseconds from the current date­ and elegantly display it on the scre­en....

Approach 2: Using se­tUTCDate Method

...

Contact Us