Which JavaScript object works with the dates?
Date
DateTime
date
dateTime
Correct Answer : A
Which JavaScript statement(s) is correct to create Date object(s) with new Date() constructor?
What will be the output of the following JavaScript code?
const currDate = new Date(); document.write(currDate);