Having trouble formatting the date in MM/DD/YYYY HH:mm:ss format within my .ts script. I attempted to use moment.js.
moment(dateToBeFormatted, "'YYYY-MM-dd'T'HH:mm:ss.SSS'Z'").format("YYYY/MM/DD HH:mm")
However, for 2021-11-26T23:19:00.000+11:00, the result is coming out as 2026/11/01 20:19. Not sure where I'm going wrong here. If I try
moment(dateToBeFormatted).format("YYYY/MM/DD HH:mm")
I receive an error saying "Invalid date."