| 9 | // Methods - size, head, addLast, addFirst, addAt, removeFirst, removeLast, remove, removeAt, indexOf, isEmpty, elementAt, findMiddle, get, clean, rotateListRight |
| 10 | |
| 11 | class Node { |
| 12 | constructor(data) { |
| 13 | this.data = data |
| 14 | this.next = null |
nothing calls this directly
no outgoing calls
no test coverage detected