Retool table column date formating with moment i have

Docs are here Moment.js | Docs

// Parse date string in UTC timezone
let yourDate = moment.tz('2021-05-24', 'UTC'); 
let foo = yourDate.format("ddd, MMMM Do YYYY");
return foo;
// returns "Sun, May 24th 2021"
1 Like