{"id":1337,"date":"2024-08-31T11:55:30","date_gmt":"2024-08-31T14:55:30","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1337"},"modified":"2024-08-31T11:56:38","modified_gmt":"2024-08-31T14:56:38","slug":"resumo-da-live-tiktok-31082024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1337","title":{"rendered":"Resumo da Live TikTok 31082024"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Ol\u00e1 Pessoal! <\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Na Live do dia 31\/08\/2024 foram abordados os seguintes temas:<\/h2>\n\n\n\n<ul>\n<li>Eventos;<\/li>\n\n\n\n<li>DOM;<\/li>\n\n\n\n<li>HTML;<\/li>\n\n\n\n<li>LA\u00c7O FOR;<\/li>\n\n\n\n<li>FOREACH;<\/li>\n\n\n\n<li>FOR IN.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>EVENTOS\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    &lt;p id=\"meuParagrafo\"&gt; Texto Original&lt;\/p&gt;\n    &lt;button onclick=\"alterar()\"&gt;\n         Alterar Texto&lt;\/button&gt;\n\n    &lt;script&gt;\n        const p =\n         document.getElementById('meuParagrafo');        \n\n        function alterar(){\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\nEVENTOS2\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;Adicionar e Remover Item&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\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    &lt;button id=\"botaoAdicionar\"&gt;\n         Adicionar Item&lt;\/button&gt;\n    &lt;button id=\"botaoRemover\"&gt;\n         Remover \u00daltimo Item&lt;\/button&gt;\n\n        &lt;script&gt;\n            const add =\n             document.getElementById('botaoAdicionar');\n\n            const del =\n             document.getElementById('botaoRemover');\n\n             add.addEventListener('click', function(){\n                const novoItem = \n                    document.createElement(\"li\");\n                novoItem.textContent = \"Item Novo\";\n\n            document.getElementById('minhaLista').\n            appendChild(novoItem);\n             });\n\n             del.addEventListener('click', function(){\n\n                const lista = \n                document.getElementById('minhaLista');\n\n                lista.removeChild(lista.lastElementChild);\n             });\n             \n        &lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;\n\nLA\u00c7O FOR\nEXEMPLO 1\n\nconst nomes = &#91;\"Marcos\", \"Jo\u00e3o\", \"Carla\",\n     \"Maria\", \"Rodrigo\"];\n\n\nfor(var item = 0; item &lt; nomes.length; item ++ ){\n    console.log( item + 1 + \" - \" + nomes&#91;item]);\n}\nconsole.log(\"*****************\");\n\nnomes.forEach((item, index)=&gt;{\n   console.log((index + 1) + \" - \" + item);\n});\n\nEXEMPLO 2\nconst frutas = &#91; \"uva\", \"laranja\", \"morango\" ];\n\nfrutas.forEach(minhaFuncao);\n\nfunction minhaFuncao(item, index){\n    return console.log( index   + \": \" + item);\n}\n\nEXEMPLO 3\nconst numeros = &#91; 1,2,3,4 ];\n\nfunction mult(valor){\n    return console.log(valor * 5)\n}\nnumeros.forEach(mult);\n\nEXEMPLO 4\nconst numeros = &#91;10,20,30,40,50];\nlet resultado = '';\n\nfor(let numero in numeros){\n\n    resultado += numero + ' ';\n}\nconsole.log(\"Resultado do FOR IN: \"\n     + resultado.trim());\n\n<\/code><\/pre>\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><\/p>\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<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">PR\u00d3XIMAS LIVES<\/h2>\n\n\n\n<p>01\/09\/2024 \u00e0s 19:00hs<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"558\" height=\"1024\" src=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/07\/image-4.png\" alt=\"\" class=\"wp-image-1144\" style=\"width:242px;height:auto\" srcset=\"https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/07\/image-4.png 558w, https:\/\/desvendandoocodigo.com.br\/wp-content\/uploads\/2024\/07\/image-4-163x300.png 163w\" sizes=\"(max-width: 558px) 100vw, 558px\" \/><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 31\/08\/2024 foram abordados os seguintes temas: https:\/\/go.hotmart.com\/V89811082M?dp=1 https:\/\/go.hotmart.com\/X90111663X?dp=1 PR\u00d3XIMAS LIVES 01\/09\/2024 \u00e0s 19:00hs<\/p>\n","protected":false},"author":1,"featured_media":1097,"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\/1337"}],"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=1337"}],"version-history":[{"count":2,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1337\/revisions"}],"predecessor-version":[{"id":1339,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1337\/revisions\/1339"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/media\/1097"}],"wp:attachment":[{"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}