Skip to content

Instantly share code, notes, and snippets.

@kaw2k
Created January 23, 2016 02:32
Show Gist options
  • Save kaw2k/31a1d20d59418a07a87a to your computer and use it in GitHub Desktop.
Save kaw2k/31a1d20d59418a07a87a to your computer and use it in GitHub Desktop.
var linkedList = listNode(1, listNode(2, listNode( 3)));
linkedList.map(function(x) {
return x + 1;
});
// listNode(2, listNode(3, listNode( 4)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment