https://github.com/1999/dsorin-linked-list
https://github.com/1999/dsorin-linked-list
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/1999/dsorin-linked-list
- Owner: 1999
- Created: 2016-10-18T15:46:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-08-26T07:44:40.000Z (over 7 years ago)
- Last Synced: 2025-02-17T02:16:06.524Z (3 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```