An open API service indexing awesome lists of open source software.

https://github.com/1999/dsorin-linked-list


https://github.com/1999/dsorin-linked-list

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# dsorin-linked-list
Linked list implementation in JS

# API
```javascript
const ll = require('dsorin-linked-list');

const node1 = new ll(111);
const node2 = new ll(222);
node1.addNext(node2);
```