JS Example for Beginners: Javascript Program to Display Current Date

(JavaScript programming Example for Beginners)

Javascript Program to Display Current Date

In this example, you will learn to write a JavaScript program that will display the current date.

 


Example : Display Current Date

// program to display the date
// get local machine date time
let date = new Date();

// get the date as a string
let n = date.toDateString();

// get the time as a string
let time = date.toLocaleTimeString();

// display date
console.log('Date: ' + n);

// display time
console.log('Time: ' + time);

Output

Date: Wed Aug 26 2020
Time: 1:13:12 PM

In the above example, the new Date() constructor is used to create a date object. Then,

1. The new Date() gives the current date and time.

let date = new Date();
console.log(date);
// Sun Aug 23 2020 10:46:38 GMT+0545 (+0545)

2. The toDateString() method returns the date portion of a date object.

let n = date.toDateString();
console.log(n); // Wed Aug 26 2020

3. The toLocaleTimeString() method returns the time portion of a date object.

let time = date.toLocaleTimeString();
console.log(time); // 1:13:12 PM

 

 

JS Example for Beginners: Javascript Program to Display Current Date

Sign up to get end-to-end “Learn By Coding” example.



Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.