Skip to content

Instantly share code, notes, and snippets.

@hrumhrumble
Created August 14, 2017 10:08
Show Gist options
  • Save hrumhrumble/88c1256bcc79e0b9b4a8a7f17a001771 to your computer and use it in GitHub Desktop.
Save hrumhrumble/88c1256bcc79e0b9b4a8a7f17a001771 to your computer and use it in GitHub Desktop.
let list = {
value: 1,
next: {
value: 2,
next: {
value: 3,
next: {
value: 4,
next: null
}
}
}
};
function printReverseList(list) {
if (list.next) {
printReverseList(list.next);
}
console.log( list.value );
}
printReverseList(list);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment