Tree TraversalDFS In OrderOn this pageDFS In OrderVisits the left subtree, then the root, then the right subtree.Interactive VisualizationLoading visualization…Usagesrc/sample/inorder.tsimport { inOrder, Node } from 'athro';const root = new Node(3);const result = inOrder(root);