Given an object that resembles a DOM tree, implement a function that serializes the object into a formatted string with proper indentation (one tab (\t character) per nesting level) and one tag per line.
\t
const tree = { tag: 'body', children: [ { tag: 'div', children: [{ tag: 'span', children: ['foo', 'bar'] }] }, { tag: 'div', children: ['baz'] }, ],}; serializeHTML(tree);// Output:`<body> <div> <span> foo bar </span> </div> <div> baz </div></body>`;
console.log()