iemi-linked-list
v1.0.0
Published
Simple Linked List done as a way to practice JavaScript.
Readme
linked-list-js
Simple Linked List done as a way to practice JavaScript.
How To Use
Only works you have Node installed on your machine
Use this command: node <file-name>.js
METHODS
append(value)prepend(value)toString() -> prints to consoleat(index) -> node.valuepop()contains(value) -> boolfind(value) -> indexinsertAt(value, index)removeAt(index)
