Which JavaScript method is used to convert a date to a UTC string (a date display standard)?
toUTCString()
toUtcString()
utcString()
toutcstring()
Correct Answer : A
Which JavaScript object works with the dates?
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);