{"id":1246,"date":"2024-08-05T21:38:59","date_gmt":"2024-08-06T00:38:59","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1246"},"modified":"2024-08-07T17:23:19","modified_gmt":"2024-08-07T20:23:19","slug":"resumo-da-live-tiktok-05082024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1246","title":{"rendered":"Resumo da Live TikTok 05082024"},"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 05\/08\/2024 foram abordados os seguintes temas:<\/h2>\n\n\n\n<ul>\n<li>Condicionais Simples, Composta e Aninhada;<\/li>\n\n\n\n<li>findIndex;<\/li>\n\n\n\n<li>Vetores de Objetos;<\/li>\n\n\n\n<li>Callback;<\/li>\n\n\n\n<li>Escopo.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>ANOTACOES\n\/\/ if(condicao){ \/\/falso\n\/\/     \/\/bloco de comandos\n\/\/ }else if(condicao){\n\/\/     \/\/bloco de comandos\n\/\/ }else{\n\/\/     \/\/bloco de comandos\n\/\/ }\n\n\/\/ console.log('testando ');\n\n\n\nVETORES\n\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\n\n\n\nconst list3 =&#91;1,2,    3,4,5];\n\/\/ indice     0 1 2 3 4 \n\/\/ posicoes   1 2 3 4 5 \n\n\nlist3.splice(2, 1);\nconsole.log(list3);\n\nconst list4 =&#91;1,2,    3,4,5];\nlist4.splice(2, 0, 99);\nconsole.log(list4);\n\n\nCALLBACK\nfunction saudar(nome, callback){\n    console.log('Ol\u00e1 ' + nome)\n\n    callback();\n}\n\nfunction despedir(){\n    console.log(\"Tchau!\");\n}\n\nsaudar('Marcos', despedir);\n\nFINDINDEX\n\nconst valores = &#91;1,2,5, 20,44];\n\nconst maior = function (elemento){\nreturn elemento &gt; 13\n}\n\nconst index = valores.findIndex( maior);\nconsole.log(index);\n\nFINDINDEX2\n\nconst usuarios = &#91;\n{ id: 1, nome: 'Jo\u00e3o'},\n{ id: 2, nome: 'Maria'},\n{ id: 3, nome: 'Marcos'}\n];\n\nconst index = usuarios.findIndex(function (usuario){\nreturn usuario.id === 2 });\n\nconsole.log(index);\nconsole.log(usuarios&#91;1]);\nconsole.log(usuarios&#91;1].nome);\n\nEVENTOS\n\nAlterar texto\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 pelo JS!!!!\";\n        p.style.color = 'red';\n        p.style.fontSize = '30pt';\n    }\n\n&lt;\/script&gt;\n\nFUNCAO DE SETA\n\n\/\/ const minhafuncao = ()=&gt;{\n\/\/ console.log('Ola');\n\/\/ }\n\n\/\/ minhafuncao();\n\nvar b = 50;\n\nlet a = 10; \/\/escopo global\n\nif(b == 50){\n    let a = 1000 \n    console.log(a);   \/\/escopo local\n}\n\nconsole.log(a);<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p><\/p>\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<p>PR\u00d3XIMAS LIVES<\/p>\n\n\n\n<p>07\/08\/2024 \u00e0s 19:00hs  &#8211;   <strong>LIVE CANCELADA POR MOTIVOS DE SA\u00daDE<\/strong><\/p>\n\n\n\n<p>08\/08\/2024 \u00e0s 10:00hs<\/p>\n\n\n\n<p>09\/08\/2024 \u00e0s 10: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\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 05\/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 07\/08\/2024 \u00e0s 19:00hs &#8211; LIVE CANCELADA POR MOTIVOS DE SA\u00daDE 08\/08\/2024 \u00e0s 10:00hs 09\/08\/2024 \u00e0s 10: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\/1246"}],"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=1246"}],"version-history":[{"count":4,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1246\/revisions"}],"predecessor-version":[{"id":1250,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1246\/revisions\/1250"}],"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=1246"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1246"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1246"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}