Skip to content

Instantly share code, notes, and snippets.

@KyleMit
Last active October 15, 2020 19:53
Show Gist options
  • Select an option

  • Save KyleMit/0d521359dfaaf8b9a16e6fe00568c45b to your computer and use it in GitHub Desktop.

Select an option

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