Languages
[Edit]
EN

JavaScript - get current date only

9 points
Created by:
Root-ssh
175020

In this article, we would like to show you how to get the current date only using the Date class in JavaScript.

1. Predefined methods example

// ONLINE-RUNNER:browser;

var now = new Date();

// Current date: Thu Feb 20 2020
console.log('Current date: ' + now.toDateString());

Note: during using to...String methods it is necessaryto be careful because of specific formatting of date and time on the locale.

2. Custom formatting (year, month, day) example

// ONLINE-RUNNER:browser;

function renderNumber(value, length) {
    var result = value.toString();

    for(; length > result.length; length -= 1)
        result = '0' + result;

    return result;
}

var now = new Date();

var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();

var date = renderNumber(year, 4) 
    + '.' + renderNumber(month, 2) 
    + '.' + renderNumber(day, 2);

console.log('Current date: ' + date); // Current date: 2020.02.20

References

  1. Date class - MDC Docs
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.
Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join