MCPcopy 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

1function 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

arrayToListFunction · 0.85
listToArrayFunction · 0.85
prependFunction · 0.85
nthFunction · 0.85

Tested by

no test coverage detected