Skip to content

Instantly share code, notes, and snippets.

@giltayar
Last active January 24, 2017 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giltayar/d84ace23c5f74c4031c58fefe28b0614 to your computer and use it in GitHub Desktop.
Save giltayar/d84ace23c5f74c4031c58fefe28b0614 to your computer and use it in GitHub Desktop.
function stringToArray(s) {
const retVal = [];
for (const ch of s) {
retVal.push(ch);
}
return retVal;
}
console.log(stringToArray('Robin H😀😀d'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment