Created
April 20, 2017 05:51
-
-
Save schan90/e28900c776254ed5a5fd773e2d608a69 to your computer and use it in GitHub Desktop.
Daily Toy 2nd-TUE. getAllLetters
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
| function getAllLetters(str) { | |
| // your code here | |
| return Array.from(str); | |
| } | |
| //var output = ; | |
| console.log(getAllLetters("Radagast")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment