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/bcc8b00a665f849dbac161d90610ea77 to your computer and use it in GitHub Desktop.
Save DoctorDerek/bcc8b00a665f849dbac161d90610ea77 to your computer and use it in GitHub Desktop.
String with Just Commas
const arrayToJoin = ["😊", "😊", "😊"]
// just a comma, no space
console.log(arrayToJoin.join(","))
// Output: "😊,😊,😊"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment