Skip to content

Instantly share code, notes, and snippets.

@alexeygolev
Created July 29, 2016 21:58
Show Gist options
  • Save alexeygolev/bd080c17280562a2f07f719347166a57 to your computer and use it in GitHub Desktop.
Save alexeygolev/bd080c17280562a2f07f719347166a57 to your computer and use it in GitHub Desktop.
function toStrings(xs) {
let idx = 0
let result = []
while (idx < xs.length) {
result[idx] = xs[idx].toString()
idx = idx + 1
}
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment