How do I convert a LocalDateTime to a JavaScript Date object with JS-Joda?

2k Views Asked by At

how do I convert a LocalDateTime Object from the @js-joda/core library to a standard JavaScript Date object?

1

There are 1 best solutions below

0
On BEST ANSWER

As @RobG mentioned in a comment import convert from '@js-joda/core' and you can use let date = convert(ZonedDateTime.now()).toDate(); to get a js date