Skip to content

Instantly share code, notes, and snippets.

@aleduca
Created December 26, 2021 16:00
Show Gist options
  • Save aleduca/de4967daf27512da6fd9e513833f2112 to your computer and use it in GitHub Desktop.
Save aleduca/de4967daf27512da6fd9e513833f2112 to your computer and use it in GitHub Desktop.
Date dateformat int
formatar_data = (d) =>{
const date = new Date(d);
const formatter = Intl.DateTimeFormat('pt-BR', {
timeZone: 'UTC',
dateStyle: "short"
});
return formatter.format(date);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment