{"id":1501,"date":"2024-10-17T15:37:26","date_gmt":"2024-10-17T18:37:26","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1501"},"modified":"2024-10-17T15:38:02","modified_gmt":"2024-10-17T18:38:02","slug":"resumo-da-live-tiktok-17-10-2024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1501","title":{"rendered":"Resumo da Live TikTok 17\/10\/2024"},"content":{"rendered":"\n<p>Ol\u00e1 Pessoal! <\/p>\n\n\n\n<p>Na Live do dia 17\/10\/2024 praticamos l\u00f3gica de programa\u00e7\u00e3o com JavaScript.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\tSOMAR ELEMENTOS\n\t\n\tconst numeros = &#91;10,20,30,40,50];\n\nlet soma = 0;\n\nfor(let i = 0; i &lt; numeros.length; i++ ){\n\n\n    soma = soma + numeros&#91;i];\n\n}\n\nconsole.log(\" O resultado \u00e9: \" +  soma);\n\n\n\nCONTADOR DE PARES\n\nlet numeros = &#91;5, 8, 12, 15, 18, 22, 35];\n\n\nlet contadorPares = 0;\n\n\nfor ( let i = 0; i &lt; numeros.length; i++ ){\n\n        if( numeros&#91;i] % 2 === 0){\n\n            contadorPares++;\n        }\n}\n\nconsole.log('A quantidade de pares \u00e9: ' , contadorPares);\n\nMAIOR N\u00daMERO\n\nlet numeros = &#91;23, 15, 76, 42, 9, 88, 3]; \n\nlet i = 0;\n\nlet maior = numeros &#91;0];\n\n\nwhile(i &lt; numeros.length ){\n\n    if( numeros&#91;i] &gt; maior ) {\n\n        maior = numeros&#91;i];\n    }\n    i++;\n}\n\nconsole.log(' O maior n\u00famero \u00e9 : ' , maior);\n\n\nMULTIPLICAR ITENS COM WHILE\n\nvar numeros = &#91; 2,4,6,8,10];\n\nlet i = 0;\n\nwhile(i &lt; numeros.length ){\n    numeros&#91;i] *= 2;    \n    i++    \n}\nconsole.log(  ` O Resultado \u00e9 : ${numeros} `);\n\n\n\nMULTIPLICAR ITENS COM FOREACH\n\nvar numeros = &#91; 2,4,6,8,10];\n\n\nfunction multiplicar(valor){\n    return console.log( valor * 2 )\n}\n\nnumeros.forEach(   multiplicar  );<\/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<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","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 17\/10\/2024 praticamos l\u00f3gica de programa\u00e7\u00e3o com JavaScript. https:\/\/go.hotmart.com\/V89811082M?dp=1 https:\/\/go.hotmart.com\/X90111663X?dp=1 HOR\u00c1RIO DAS LIVES Domingo e Segunda \u00e0s 19:00hs Quarta \u00e0s 18:00hs Quinta e Sexta \u00e0s 9:30hs<\/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\/1501"}],"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=1501"}],"version-history":[{"count":2,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1501\/revisions"}],"predecessor-version":[{"id":1503,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1501\/revisions\/1503"}],"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=1501"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1501"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1501"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}