This week’s problem involves a data structure we previously covered, trees. Please visit the previous article here, to learn more about binary trees and to implement one on your own in JavaScript! A tree consists of interconnected nodes, the main relationship being parent nodes and child nodes. Binary trees are…