JSFiddle - React, Tailwind, and code Playground
by Slava Slava
JavaScript
let data = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
function printList(list) {
console.log(list.value)
while(Boolean(list.next)) {
return printList(list.next)
}
}
console.log(printList(data))