src/old/Node.js
export class Node {
constructor (left, right, value){
this.fw = left;
this.bw = right;
this.value = value;
}
}
export class Node {
constructor (left, right, value){
this.fw = left;
this.bw = right;
this.value = value;
}
}