Skip to content

Instantly share code, notes, and snippets.

@Paul-Browne
Last active December 13, 2019 13:09
Show Gist options
  • Save Paul-Browne/ba9d3f18740441c10de1e99021d579e8 to your computer and use it in GitHub Desktop.
Save Paul-Browne/ba9d3f18740441c10de1e99021d579e8 to your computer and use it in GitHub Desktop.
var array = [1, 2, [3, 4], [5, 6, [7, 8], 9], 10];
var string = array.toString();
console.log(string);
// 1,2,3,4,5,6,7,8,9,10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment