MCPcopy Create free account
hub / github.com/careercup/CtCI-6th-Edition-JavaScript / constructor

Method constructor

chapter07/util/LinkedList.js:4–7  ·  view source on GitHub ↗
(value)

Source from the content-addressed store, hash-verified

2
3class Node {
4 constructor(value) {
5 this.value = value
6 this.next = null;
7 }
8 }
9
10 class LinkedList {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected