Skip to content

Instantly share code, notes, and snippets.

@DoctorDerek
Created December 1, 2020 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DoctorDerek/93bafb75fb44fc02d940cecfe4572d14 to your computer and use it in GitHub Desktop.
Save DoctorDerek/93bafb75fb44fc02d940cecfe4572d14 to your computer and use it in GitHub Desktop.
String with Comma and a Space
const arrayToJoin2 = ["😄", "😄", "😄"]
// comma and a space
arrayToJoin2.join(", ")
// Output: "😄, 😄, 😄"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment