Tree class

function Node(val, left = null, right = null) {
	this.val = val;
}
 
function Queue() {
	append
	
}
 
function Tree() {
 
	bfs(root) {
		
	}
}
 
const node5 = new Node(val, left, right);