We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d552ee commit 0f05ec9Copy full SHA for 0f05ec9
src/data-structures/linked-list/README.md
@@ -13,6 +13,8 @@ A JavaScript implementation of a linked list. This class uses the conventions of
13
1. Defining a `values()` generator method.
14
1. Returning `undefined` from `get()` when no such index exists.
15
16
+Read the [blog post](https://humanwhocodes.com/blog/2019/01/computer-science-in-javascript-linked-list/) about the design of this class.
17
+
18
## Usage
19
20
Use CommonJS to get access to the `LinkedList` constructor:
src/data-structures/linked-list/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@humanwhocodes/linked-list",
3
- "version": "2.0.1",
+ "version": "2.0.2",
4
"description": "A LinkedList implementation in JavaScript",
5
"main": "linked-list.js",
6
"scripts": {
0 commit comments