Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ linked_list.js
File
linked_list.js
DSA Javascript/linked_list.js:None–None ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
1
class
Node {
2
// constructor
3
constructor(element) {
4
this.element = element;
Callers
nothing calls this directly
Calls
8
size_of_list
Method · 0.80
indexOf
Method · 0.80
insertAt
Method · 0.80
removeFrom
Method · 0.80
isEmpty
Method · 0.45
add
Method · 0.45
printList
Method · 0.45
removeElement
Method · 0.45
Tested by
no test coverage detected