Created
August 11, 2017 08:48
-
-
Save iamgoangle/ebb0305fec129a9463ced477b29d6ad8 to your computer and use it in GitHub Desktop.
Spread string in to array
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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