Created
November 7, 2016 18:55
-
-
Save EncodeTheCode/e27b0f2cdfbd06a079cb6759b550b42d to your computer and use it in GitHub Desktop.
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 string_split(s){return s.split('').toString();} | |
string_split("Hello"); | |
-- "H,e,l,l,o" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment