Created
January 23, 2016 02:35
-
-
Save kaw2k/9e6accae250aa0fc1771 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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