This content originally appeared on DEV Community and was authored by Coderslang: Become a Software Engineer
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 won’t have any luck comparing a number
to an object
.
ANSWER: false
will be logged to the console.
This content originally appeared on DEV Community and was authored by Coderslang: Become a Software Engineer
Coderslang: Become a Software Engineer | Sciencx (2021-04-20T11:53:05+00:00) JavaScript Interview Question #34: Different ways to get the current date in JS. Retrieved from https://www.scien.cx/2021/04/20/javascript-interview-question-34-different-ways-to-get-the-current-date-in-js/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.