Skip to content

Instantly share code, notes, and snippets.

@miguelludert
Created February 13, 2017 02:59
Show Gist options
  • Save miguelludert/8e5ae19e57943ff4c10f2dd616455801 to your computer and use it in GitHub Desktop.
Save miguelludert/8e5ae19e57943ff4c10f2dd616455801 to your computer and use it in GitHub Desktop.
Linked List Madness
function valuesToList() {
var head, tail;
head = tail = { value : arguments[0] };
for(var i = 1; i < arguments.length; i++){
tail = tail.next = { value : arguments[i] };
}
return head;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment