Skip to content

Instantly share code, notes, and snippets.

@kozy4324
Created December 1, 2012 08:01
Show Gist options
  • Select an option

  • Save kozy4324/4181043 to your computer and use it in GitHub Desktop.

Select an option

Save kozy4324/4181043 to your computer and use it in GitHub Desktop.
javascript flatten
function flatten() {
var a = arguments, l = 0;
while (l != a.length) {
l = a.length;
a = Array.prototype.concat.apply([], a);
}
return a;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment