Use moment to format the date.
A format string based on moment.
Date string to format.
Language or language-country locale string (or array of strings) available in https://github.com/moment/moment/tree/develop/locale .
Returns formatted date.
{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z"}}{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z" 'jp'}}{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z" 'es'}} Copy
{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z"}}{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z" 'jp'}}{{!-- results in: 2021/10/24 --}}{{formatDate 'YYYY/MM/DD' "2021-10-24T02:13:06.610Z" 'es'}}
Use moment to format the date.