export default class Node { constructor(key, data) { this.next = null; this.key = key; this.data = data; this.left = null; this.right = null; } }