Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/marijnh/Eloquent-JavaScript
/ 04_3_a_list.js
File
04_3_a_list.js
code/solutions/04_3_a_list.js:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
function
arrayToList(array) {
2
let
list = null;
3
for
(
let
i = array.length - 1; i >= 0; i--) {
4
list = {value: array[i], rest: list};
Callers
nothing calls this directly
Calls
4
arrayToList
Function · 0.85
listToArray
Function · 0.85
prepend
Function · 0.85
nth
Function · 0.85
Tested by
no test coverage detected