[Solved] How to change datetime format in javascript?

There are, of course, vanilla solutions but working with date/time in JS is generally a pain. If you’re going to be working with date/time in any serious capacity I would highly recommend using Moment.js‘s format method for its robustness and flexibility, and it should be able to do what you want. Examples from the docs: … Read more