-
-
Save gibo/2bef37a496ee5c4bc50b31ea08760dba to your computer and use it in GitHub Desktop.
kata
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
Cons.fromArray = function(array) { | |
array = array.reverse(); | |
let last = new Cons(array.shift(), null); | |
array.forEach(function(item) { | |
last = new Cons(item, last); | |
}); | |
return last; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment