{"id":1449,"date":"2024-10-12T23:23:19","date_gmt":"2024-10-13T02:23:19","guid":{"rendered":"https:\/\/desvendandoocodigo.com.br\/?p=1449"},"modified":"2024-10-15T15:16:36","modified_gmt":"2024-10-15T18:16:36","slug":"resumo-da-live-tiktok-12-10-2024","status":"publish","type":"post","link":"https:\/\/desvendandoocodigo.com.br\/?p=1449","title":{"rendered":"Resumo da Live TikTok 12\/10\/2024"},"content":{"rendered":"\n<p>Ol\u00e1 Pessoal! <\/p>\n\n\n\n<p>Na Live do dia 12\/10\/2024 trabalhamos com os La\u00e7os For In e For Of.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>FOR IN\n\nconst pedido = {\n    cliente: \"Jo\u00e3o\",\n    item: \"Hamb\u00farguer de Bacon\",\n    quantidade: 2,\n    pagamento: \"Cart\u00e3o de cr\u00e9dito\"\n};\n\nfor(let propriedade in  pedido  ) {\n    console.log(` ${propriedade} :  ${pedido&#91;propriedade]} `);\n}\n\n\n\nFOR IN2\nconst milkshakes = &#91;'Chocolate', \n    'Baunilha', 'Morango', 'Oreo'];\n\nfor( let index in milkshakes ){\n    console.log(index +':'+ milkshakes&#91;index]);\n}\n\nFOR IN3\n\nconst funcionario = {\nnome: \"Marcia\",\ncargo: \"Atendente\",\nidade: 29,\nsalario: 1800.00\n};\nfor ( let prop in funcionario){\n\n    if(typeof funcionario&#91;prop] === \"number\"){\n        console.log(\"A propriedade \" +\n             prop + \" \u00e9 do tipo e valor \u00e9: \"\n              + funcionario&#91;prop]);\n    }\n}\n\nFOR OF\n\nconst ingredientes = &#91;'P\u00e3o', 'Carne',\n     'Queijo', 'Alface', 'Tomate'];\n\nfor ( let ingrediente of ingredientes){   \n    console.log(ingrediente);\n}\n\n\n\nFOR OF2\n\nconst precos = &#91;15.50, 22.00,\n     18.75, 25.00 ];\nlet total = 0;\n\nfor( let preco of precos){\n    total += preco;  \n}\nconsole.log('Valor total: R$ '\n     + total.toFixed(2) );\n\n\nFOR OF3\n\nconst pedidos = &#91;\n    { cliente: \"Jo\u00e3o\",\n      item: \"Hamb\u00farguer de Bacon\",\n      quantidade: 2},\n\n    { cliente: \"Maria\",\n    item: \"Hamb\u00farguer Vegano\",\n    quantidade: 1},\n\n    { cliente: \"Pedro\",\n        item: \"Cheeseburguer\",\n        quantidade: 3}\n]\nfor( let pedido of pedidos){\n\nconsole.log(\"Cliente: \" + pedido.cliente + \n            \"  , Item: \" + pedido.item +\n            \"  , Quantidade: \" + pedido.quantidade);\n}\n\nFOR OF E REDUCE\n\nconst precos = &#91;15.50, 22.00,\n    18.75, 25.00 ];\n\nlet total = 0;\n\nfor( let preco of precos){\n   total += preco;  \n}\nconsole.log('Valor total com FOR OF: R$ '\n    + total.toFixed(2) );\n\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\nconst precos2 = &#91;15.50, 22.00,\n    18.75, 25.00 ];\n\nconst total2 =\n precos2.reduce( \n      ( acumulador, precoAtual) =&gt; \n        acumulador + precoAtual, 0\n    )\n\nconsole.log('Valor total com REDUCE: R$ '\n     + total2.toFixed(2) );\n\t\nLA\u00c7O FOR\n\nfor ( var cont = 1 ; cont &lt;=3  ; cont ++ ){\n\n    console.log('ETAPA ', cont);\n\n}\n\t <\/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\n\n\n<p> S\u00e1bado \u00e0s 20:00hs<\/p>\n\n\n\n<p><\/p>\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=\"Programa\u00e7\u00e3o do zero ao avan\u00e7ado |  #cursodejavascript\" width=\"960\" height=\"540\" src=\"https:\/\/www.youtube.com\/embed\/m5WLUQAZ0vA?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","protected":false},"excerpt":{"rendered":"<p>Ol\u00e1 Pessoal! Na Live do dia 12\/10\/2024 trabalhamos com os La\u00e7os For In e For Of. 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 S\u00e1bado \u00e0s 20: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\/1449"}],"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=1449"}],"version-history":[{"count":3,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1449\/revisions"}],"predecessor-version":[{"id":1497,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=\/wp\/v2\/posts\/1449\/revisions\/1497"}],"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=1449"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1449"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/desvendandoocodigo.com.br\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1449"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}