140

How to get current date using the Moment library? Not timestamp, but date. So please don't refer to that timestamp question already to be found.

I know how to get it in regular javascript, but I need a moment object with current date.

What about timezone, how to get current date in certain timezone?

Ville Miekk-oja
  • 15,451
  • 29
  • 64
  • 97

1 Answers1

233

Just call moment as a function without any arguments:

moment()

For timezone information with moment, look at the moment-timezone package: http://momentjs.com/timezone/

Rob M.
  • 33,381
  • 6
  • 50
  • 46