Skip to content

Instantly share code, notes, and snippets.

@TimBlock
Created January 15, 2016 10:40
Show Gist options
  • Save TimBlock/0cee5eb945166c361ba5 to your computer and use it in GitHub Desktop.
Save TimBlock/0cee5eb945166c361ba5 to your computer and use it in GitHub Desktop.
var arrays = [[1, 2, 3], [4, 5], [6]];
console.log(arrays.reduce(function(a,b) {
return a.concat(b);
}));
// Your code here.
// → [1, 2, 3, 4, 5, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment