Skip to content

Instantly share code, notes, and snippets.

@iamgoangle
Created August 11, 2017 08:48
Show Gist options
  • Select an option

  • Save iamgoangle/ebb0305fec129a9463ced477b29d6ad8 to your computer and use it in GitHub Desktop.

Select an option

Save iamgoangle/ebb0305fec129a9463ced477b29d6ad8 to your computer and use it in GitHub Desktop.
Spread string in to array
let name = 'Prayuth';
let spreadName = [...name]; // "P", "r", "a", "y", "u", "t", "h"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment