Skip to content

Instantly share code, notes, and snippets.

@tai-cha
Created May 26, 2020 11:02
Show Gist options
  • Save tai-cha/c15429381b0aedb1d2b6514669d637a0 to your computer and use it in GitHub Desktop.
Save tai-cha/c15429381b0aedb1d2b6514669d637a0 to your computer and use it in GitHub Desktop.
array to string sample
const strArray = ["This", "is", "test", "code", "to", "join", "string"];
const arrayToString = (arr) => arr.reduce((acc, cur) => acc + " " + cur);
console.log(arrayToString(strArray));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment