Pergunta de entrevista da empresa Meta

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.

Resposta da entrevista

Sigiloso

6 de jan. de 2022

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

4