Skip to content

Instantly share code, notes, and snippets.

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