@@ -1 +1,75 @@
-console.log('henlo')
+let obj = {
+ body: {
+ tagName: 'body',
+ attrs: {},
+ paired: true,
+ children: [
+ {
+ tagName: 'div',
+ tagName: 'span',
+ children: ['Enter data please:']
+ },
+
+ tagName: 'br',
+ paired: false
+ tagName: 'input',
+ attrs: {
+ type: 'text',
+ id: 'name'
+ id: 'surname'
+ }
+ ]
+ tagName: 'button',
+ id: 'ok'
+ children: ['Ok']
+ id: 'cancel'
+ children: ['Cancel']
+ ],
+}
+console.log(obj.body.children[0].children[0].children[0])
+console.log(obj.body.children[1].children[1].attrs.id)
+console.log(obj.body.children[0].children[1].tagName)