Skip to content

Instantly share code, notes, and snippets.

@russo97
Created February 16, 2022 14:24
Show Gist options
  • Save russo97/cfde2baa400cf223742793c5ca5c9ce4 to your computer and use it in GitHub Desktop.
Save russo97/cfde2baa400cf223742793c5ca5c9ce4 to your computer and use it in GitHub Desktop.
List Format using Javascript
(function () {
const formattedList = new Intl.ListFormat('pt-BR').format(["Banana", "Maça", "Laranja"]);
console.log(formattedList);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment