Languages
[Edit]
PL

JavaScript - jak pobierać aktualną datę?

3 points
Created by:
Sylwia
3590

W JavaScript, aby uzyskać aktualny czas używamy klasy Date.

1. Przykład predefiniowanych metod

// ONLINE-RUNNER:browser;

var now = new Date();

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

Uwaga: podczas korzystania z  to...String należy zachować ostrożność, ze względu na określone formatowanie daty i czasu w ustawieniach regionalnych.

2. Przykład formatowania niestandardowego (rok, miesiąc, dzień)

// 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

Bibliografia

  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