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

Methods

Some commonly used methods of the Date object include:

Static Methods

  • Date.now(): Returns the number of milliseconds since January 1, 1970, 00:00:00 UTC, calibrated (plus/minus some hours) to the timezone of your computer.
  • Date.UTC(<parameters>): Returns the number of milliseconds since January 1, 1970, 00:00:00 UTC.
  • Date.parse(text): Parsing strings with Dat...