Meta interview question

For a recursive description of DOM elements i.e. var dom = { type:'div', props:{id:'hello', children:[{type:'h1', children:'HELLO'}]}}. Define a function that prepares a actual dom elements.

Interview Answer

Anonymous

6 Jan 2022

recursive document.createElement with assing all the attributes and children.

4