Last active
May 18, 2016 13:59
-
-
Save josebalius/d1fe8bfd160401a6bd15 to your computer and use it in GitHub Desktop.
Recursive
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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