Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/careercup/CtCI-6th-Edition-JavaScript
/ Tree
Function
Tree
chapter04/util/Tree.js:1–4 ·
view source on GitHub ↗
(value)
Source
from the content-addressed store, hash-verified
1
var
Tree =
function
(value) {
2
this.value = value;
3
this.children = [];
4
};
5
6
module.exports = Tree;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected