Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/careercup/CtCI-6th-Edition-JavaScript
/
Class
chapter03/util/LinkedList.js:3–3 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
// moved from chapter 2 (/util/LinkedListX.js)
2
3
class
Node {
4
constructor(value) {
5
this.value = value
6
this.next = null;
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected