Readme

moment

moment is a module that helps you do math and formatting with dates and times in JavaScript. It's a pretty old and large module, though: if you're writing new code, you probably want to use luxon or date-fns instead!

1
2
3
4
export let momentExample = (async () => {
const { default: moment } = await import("npm:moment");
return moment().add(7, "days").calendar();
})();
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
October 23, 2023