{"id":1254,"date":"2024-08-18T20:44:15","date_gmt":"2024-08-18T23:44:15","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1254"},"modified":"2024-08-18T20:45:10","modified_gmt":"2024-08-18T23:45:10","slug":"resumo-da-live-tiktok-18082024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1254","title":{"rendered":"Resumo da Live TikTok 18082024"},"content":{"rendered":"\n<p>Ol\u00e1 Pessoal!<\/p>\n\n\n\n<p>Na Live do dia 18\/08\/2024 foram abordados os seguintes temas:<\/p>\n\n\n\n<ul>\n<li>Condicionais Simples;<\/li>\n\n\n\n<li>Vetores;<\/li>\n\n\n\n<li>Escopo;<\/li>\n\n\n\n<li>Eventos;<\/li>\n\n\n\n<li>Cria\u00e7\u00e3o e Exclus\u00e3o de Itens com JS e HTML.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>METODOS PARA MANIPULAR VETORES\nconst list1 = &#91;1,2,3,4,5];\nlist1.pop();\nconsole.log(list1);\n\nconst list2 = &#91;1,2,3,4,5];\nlist2.shift();\nconsole.log(list2);\n\nconst list3 = &#91;1,2,    3,4,5];\nlist3.splice(2, 0, 99 );\nconsole.log(list3);\n\nESCOPO1\nfunction exemploEscopo(){\n    var b = 3;\n    if(b == 3){\n        var escopoVar = \"Eu sou o VAR\";\n        let escopoLet = \"Eu sou o LET\";\n        const escopoConst = \"Eu sou a Const\";\n        console.log(escopoVar);\n        console.log(escopoLet);\n        console.log(escopoConst);\n    }\n    console.log(escopoVar);\n    \/\/console.log(escopoLet);\n    \/\/console.log(escopoConst);\n}\nexemploEscopo();\n\nESCOPO2\n\nconst numeros = &#91;1,2,3,4];\/\/ escopo global\n\nvar a = 20;\n\nif(a == 20){\nnumeros.push(99);\nconsole.log(numeros); \/\/ escopo local\n}\n\nESCOPO3\n\nvar b = 10;\nvar j = 50;\n\nif(b == 10 ){\nvar j = 20;\nconsole.log(j);\n}\nconsole.log(j);\n\nEVENTOS1\n\nEventos\n\n&lt;p id=\"meuParagrafo\">   Texto Original&lt;\/p>\n&lt;button onclick=\"alterar()\"> Alterar&lt;\/button>\n\n&lt;script>\n    const p = \n    document.getElementById('meuParagrafo');\n\n    function alterar(){\n        p.innerText = \"Alteracao feita!\";\n        p.style.color = 'red';\n        p.style.fontSize = '30pt';\n    }\n&lt;\/script>\n\nEVENTOS3\n\n&lt;!DOCTYPE html>\n&lt;html lang=\"pt-br\">\n&lt;head>\n    &lt;meta charset=\"UTF-8\">\n    &lt;meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    &lt;title>Eventos Adicionar e Remover Item&lt;\/title>\n&lt;\/head>\n&lt;body>\n\n    &lt;ul id=\"minhaLista\">\n        &lt;li>Item 1&lt;\/li>\n        &lt;li>Item 2&lt;\/li>\n        &lt;li>Item 3&lt;\/li>\n    &lt;\/ul>\n\n    &lt;button id=\"botaoAdicionar\">\n        Adicionar&lt;\/button>\n    &lt;button id=\"botaoRemover\">\n        Remover \u00daltimo Item&lt;\/button>\n    \n        &lt;script>\n            const add = \n            document.getElementById('botaoAdicionar');\n            const del = \n            document.getElementById('botaoRemover');\n\n        add.addEventListener('click', function(){\n             const novoItem = document.createElement('li');\n             novoItem.textContent = 'Item Novo';\n             \n            document.getElementById('minhaLista')\n            .appendChild(novoItem);\n            });\n        \n        del.addEventListener('click', function(){\n            const lista = document.getElementById('minhaLista');\n            lista.removeChild(lista.lastElementChild);\n        })\n\n        &lt;\/script>\n&lt;\/body>\n&lt;\/html>\n\n\n\n<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Desvendando o Mundo da Programa\u00e7\u00e3o: Curso B\u00e1sico e Avan\u00e7ado de Algoritmos e JavaScript Exclusivo no Hotmart!<\/strong><\/h2>\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<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>19\/08\/2024 \u00e0s 19:00hs  <\/p>\n\n\n\n<p>21\/08\/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 18\/08\/2024 foram abordados os seguintes temas: Desvendando o Mundo da Programa\u00e7\u00e3o: Curso B\u00e1sico e Avan\u00e7ado de Algoritmos e JavaScript Exclusivo no Hotmart! https:\/\/go.hotmart.com\/V89811082M?dp=1 https:\/\/go.hotmart.com\/X90111663X?dp=1 PR\u00d3XIMAS LIVES 19\/08\/2024 \u00e0s 19:00hs 21\/08\/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\/1254"}],"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=1254"}],"version-history":[{"count":2,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1254\/revisions"}],"predecessor-version":[{"id":1256,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1254\/revisions\/1256"}],"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=1254"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1254"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1254"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}