Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 7: Advanced JavaScript Object Handling!
Instruction
Constructor
The default constructor creates the Date object at the current point in time according to your computer's clock.
const currentMilliSeconds = new Date(); // Creates a new Date object as of 'now'
alert(currentMilliSeconds); // Implicit conversion to string
alert(currentMilliSeconds.toString()); // Explicit conversion to string
alert(currentMilliSeconds.valueOf()); /...