{"id":1494,"date":"2024-10-15T15:16:06","date_gmt":"2024-10-15T18:16:06","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1494"},"modified":"2025-02-18T12:46:29","modified_gmt":"2025-02-18T15:46:29","slug":"resumo-da-live-tiktok-15-10-2024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1494","title":{"rendered":"Resumo da Live TikTok 15\/10\/2024"},"content":{"rendered":"\n<p>Ol\u00e1 Pessoal! <\/p>\n\n\n\n<p>Na Live do dia 15\/10\/2024 trabalhamos com os Eventos em JavaScript.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>INDEX\n\n&lt;!DOCTYPE html&gt;\n&lt;html lang=\"pt-br\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;title&gt;Eventos&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n    \n\n    &lt;p id=\"meuParagrafo\"&gt; Texto original &lt;\/p&gt;\n\n    &lt;button onclick=\"alterar()\" &gt; Alterar Texto &lt;\/button&gt;\n\n    &lt;script&gt;\n\n        const p = document.getElementById('meuParagrafo');\n\n        function alterar(){\n\n            p.innerText = \"Texto Alterado \";\n            p.style.color = \"red\";\n            p.style.fontSize = \"30pt\";\n        }\n\n        \n    &lt;\/script&gt;\n\n\n&lt;\/body&gt;\n&lt;\/html&gt;\n\nINDEX2\n\n&lt;!DOCTYPE html&gt;\n&lt;html lang=\"pt-br\"&gt;\n&lt;head&gt;\n    &lt;meta charset=\"UTF-8\"&gt;\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"&gt;\n    &lt;title&gt;Adcionar e Remover Item&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;    \n\n    &lt;ul id=\"minhaLista\"&gt;\n        &lt;li&gt; Item 1  &lt;\/li&gt;\n        &lt;li&gt; Item 2  &lt;\/li&gt;\n        &lt;li&gt; Item 3  &lt;\/li&gt;\n    &lt;\/ul&gt;\n\n    &lt;button id=\"botaoAdicionar\"&gt; Adicionar Item&lt;\/button&gt;\n    &lt;button id=\"botaoRemover\" &gt; Remover Item&lt;\/button&gt;\n\n\n    &lt;script&gt;\n        const add = document.getElementById('botaoAdicionar');\n        const del = document.getElementById('botaoRemover');\n\n        add.addEventListener('click', function(){\n\n            const novoItem =\n             document.createElement( 'li' );\n            \n             novoItem.textContent = \"Item Novo\";\n\n             document.getElementById('minhaLista').appendChild(novoItem);\n        });\n\n        del.addEventListener('click', function(){\n\n            const lista =  document.getElementById('minhaLista');\n\n            lista.removeChild(lista.lastElementChild);\n        })\n\n    &lt;\/script&gt;\n\n&lt;\/body&gt;\n\n&lt;\/html&gt;\n\n\nSCRIPT\nlet B = 20;\nconst C = 30;\nconst k = 5 \n\n            if(k === 5){\n             var    A = 100;\n             let   B = 200; \n                console.log( \"VAR \" + A)\n                console.log( \"LET \" +  B)\n            }\n\nconsole.log( \"VAR \" + A)\nconsole.log( \"LET \" +  B)\n\n\n\nSCRIPT2\n\nvar a = 10 ;\n\nvar b = \"10\" ;\n\nconsole.log( a == b); \nconsole.log( a === b); \n\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" title=\"Live Criando Elementos Dinamicamente com Eventos JavaScript #tutorial\" width=\"960\" height=\"540\" src=\"https:\/\/www.youtube.com\/embed\/6f-vVeRl5qc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe>\n<\/div><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"321\" src=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart.png\" alt=\"\" class=\"wp-image-162\" style=\"width:134px;height:auto\" srcset=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart.png 1000w, https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart-300x96.png 300w, https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/01\/hotmart-768x247.png 768w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p><a href=\"https:\/\/go.hotmart.com\/V89811082M?dp=1\">https:\/\/go.hotmart.com\/V89811082M?dp=1<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/go.hotmart.com\/X90111663X?dp=1\">https:\/\/go.hotmart.com\/X90111663X?dp=1<\/a><\/p>\n\n\n\n<p><a href=\"https:\/\/go.hotmart.com\/I96636211E?dp=1\">https:\/\/go.hotmart.com\/I96636211E?dp=1<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<p><strong>HOR\u00c1RIO DAS LIVES<\/strong><\/p>\n\n\n\n<p>Domingo e Segunda \u00e0s 19:00hs<\/p>\n\n\n\n<p>Quarta \u00e0s 18:00hs<\/p>\n\n\n\n<p>Quinta e Sexta \u00e0s 9:30hs<\/p>\n\n\n\n<p> S\u00e1bado \u00e0s 20:00hs<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 15\/10\/2024 trabalhamos com os Eventos em JavaScript. https:\/\/go.hotmart.com\/V89811082M?dp=1 https:\/\/go.hotmart.com\/X90111663X?dp=1 https:\/\/go.hotmart.com\/I96636211E?dp=1 HOR\u00c1RIO DAS LIVES Domingo e Segunda \u00e0s 19:00hs Quarta \u00e0s 18:00hs Quinta e Sexta \u00e0s 9:30hs S\u00e1bado \u00e0s 20:00hs<\/p>\n","protected":false},"author":1,"featured_media":1706,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[18],"tags":[],"_links":{"self":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1494"}],"collection":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1494"}],"version-history":[{"count":5,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1494\/revisions"}],"predecessor-version":[{"id":1710,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1494\/revisions\/1710"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/media\/1706"}],"wp:attachment":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}