Skip to content

Instantly share code, notes, and snippets.

@DayvitSiqueira
Created November 30, 2020 10:50
Show Gist options
  • Save DayvitSiqueira/64dcdaa98fc9f922321f9f4b47a4e903 to your computer and use it in GitHub Desktop.
Save DayvitSiqueira/64dcdaa98fc9f922321f9f4b47a4e903 to your computer and use it in GitHub Desktop.
const options = { year: "numeric", month: "long", day: "numeric" };
const date = new Date(2020, 11, 31) // 2020-12-31T03:00:00.000Z
console.log(date.toLocaleDateString("pt-br", options))
// 31 de dezembro de 2020
console.log(date.toLocaleDateString("pt-br", { ...options, month: 'numeric'}))
// 31/12/2020
const regex = /^([0-9]{4})[-](0[1-9]|1[0-2])[-](0[0-9]|1[0-9]|2[0-9]|3[0-1])/gm
const dateRx = new Date(2020, 11, 31) // 2020-12-31T03:00:00.000Z
const [full, year, month, day] = regex.exec(dateRx.toISOString())
console.log(`${day}/${month}/${year}`)
// 31/12/2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment