Skip to content

Instantly share code, notes, and snippets.

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/6f3bfdef40cd938052b3c0a14be59d1a to your computer and use it in GitHub Desktop.
Save DoctorDerek/6f3bfdef40cd938052b3c0a14be59d1a to your computer and use it in GitHub Desktop.
The Default .join() Is Comma No Space
const arrayToJoin3 = ["😁", "😁", "😁"]
// .join() is the same as .join(",")
arrayToJoin3.join()
// Output: "😁,😁,😁"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment