Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/TheAlgorithms/JavaScript
/
Class
Data-Structures/Tree/AVLTree.js:85–85 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
83
84
// creates new Node Object
85
class
Node {
86
constructor(val) {
87
this._val = val
88
this._left = null
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected