Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/betomoedano/JavaScript-Coding-Interview-Questions
/ JobNode
Class
JobNode
graphs/topological-sort.js:69–76 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
67
}
68
69
class
JobNode {
70
constructor(job) {
71
this.job = job;
72
this.prereqs = [];
73
this.visited = false;
74
this.visiting = false;
75
}
76
}
Callers
nothing calls this directly
Calls
no outgoing calls
Tested by
no test coverage detected