Skip to content

Instantly share code, notes, and snippets.

@KyleMit
Last active October 15, 2020 19:53
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 KyleMit/0d521359dfaaf8b9a16e6fe00568c45b to your computer and use it in GitHub Desktop.
Save KyleMit/0d521359dfaaf8b9a16e6fe00568c45b to your computer and use it in GitHub Desktop.
Twitter - JavaScript String Arrays
let msg = "🎃 BOO"
console.log(msg[0]) // "�"
console.log(msg.charAt(0)) // "�"
console.log([...msg][0]) // "🎃"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment