ThisĀ is an exercise in using the object oriented concepts in Javascript to implement a doubly linked list.
There is a class called Node which encapsulates the actual node in the list. The linked list is implemented as a global object with class variables and methods to:
Add a node
Remove a node
Search for a node
Sort the list [...]