Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
April 20, 2021 11:53 am GMT

JavaScript Interview Question 34: Different ways to get the current date in JS

js-test-34

How do you prefer to get the current date in JS? What will be logged to the console?

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

Both new Date() and Date.now() in JavaScript return us the current date and time.

The difference between them is that new Date() returns the Date object and Date.now() returns the number of milliseconds elapsed from the midnight of Jan 1, 1970.

If you need to compare two dates in different formats, you can always get the number of milliseconds from any Date object using the built-in getTime() function.

Otherwise, you wont have any luck comparing a number to an object.

ANSWER: false will be logged to the console.

Learn Full-Stack JavaScript


Original Link: https://dev.to/coderslang/javascript-interview-question-34-different-ways-to-get-the-current-date-in-js-4c25

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To