Skip to content

Instantly share code, notes, and snippets.

@josebalius
Last active May 18, 2016 13:59
Show Gist options
  • Save josebalius/d1fe8bfd160401a6bd15 to your computer and use it in GitHub Desktop.
Save josebalius/d1fe8bfd160401a6bd15 to your computer and use it in GitHub Desktop.
Recursive
var arr = [
1,
[2, 3],
[3, [4, 5]]
]
var flatten = function(arr) {
// Implement this function
}
console.log(flatten(arr))
// should equal to [1, 2, 3, 3, 4, 5]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment