| 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 |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | class LinkedList { |
| 19 | constructor(listOfValues) { |
nothing calls this directly
no outgoing calls
no test coverage detected