155

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
  • 18,749
  • 32
  • 70
  • 106

1 Answers1

262

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.
  • 35,491
  • 6
  • 51
  • 50