UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

11 lines (9 loc) 164 B
module.exports = class Node { constructor(data) { this.data = data; this.children = []; } add(data) { this.children.push(new Node(data)); } };