const people = ['Foo', 'Bar', 'Fuzz']; new Intl.ListFormat('en', { type: 'conjunction' }).format(people);// 'Foo, Bar, and Fuzz' new Intl.ListFormat('en-GB', { type: 'disjunction' }).format(people);// 'Foo, Bar, or Fuzz'