UNPKG

dsa.js

Version:

Data Structures & Algorithms in JS

12 lines (10 loc) 152 B
/** * Simple node of a Linked List */ class Node { constructor(value) { this.value = value; this.next = null; } } module.exports = Node;