Skip to content

Instantly share code, notes, and snippets.

@juliovt-07
Last active April 13, 2022 17:20
Show Gist options
  • Save juliovt-07/fa66d584d3200c0ab80a2057c007beee to your computer and use it in GitHub Desktop.
Save juliovt-07/fa66d584d3200c0ab80a2057c007beee to your computer and use it in GitHub Desktop.
Formatação de moeda
const formatCurrency = (value) => {
return value.toLocaleString('pt-BR', {
style: 'currency',
currency: 'BRL'
})
}
// <- formatCurrency(20000)
// -> R$ 20.000,00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment