DEV Community

Discussion on: Creating Linked Lists With JavaScript

Collapse
 
absolux profile image
Abdessamad MOUHASSINE

Great post, thanks for sharing.

I want to mention that lists store and manage values not nodes. In fact, the nodes are internals and should not be exported. For example, pop and delete methods have to return the stored value not its wrapper.