MCPcopy Create free account
hub / github.com/betomoedano/JavaScript-Coding-Interview-Questions /

Class

graphs/breadth-first-search.js:5–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3// BREADTH-FIRST SEARCH
4
5class Node {
6 constructor(name) {
7 this.name = name;
8 this.children = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected