EN
JavaScript - get current date only
9
points
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