From 31ba9111fece08c6792b38cf2d47cc6339175c3e Mon Sep 17 00:00:00 2001 From: Flavia Mabras <110493024+flamadev@users.noreply.github.com> Date: Sun, 16 Jul 2023 10:47:16 +0200 Subject: [PATCH] Update 2-js-basics/4-arrays-loops/translations/README.es.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Abril Ureña <107883174+abrilurena@users.noreply.github.com> --- 2-js-basics/4-arrays-loops/translations/README.es.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-js-basics/4-arrays-loops/translations/README.es.md b/2-js-basics/4-arrays-loops/translations/README.es.md index 0264f7c4..a2e8834e 100644 --- a/2-js-basics/4-arrays-loops/translations/README.es.md +++ b/2-js-basics/4-arrays-loops/translations/README.es.md @@ -114,7 +114,7 @@ for (let i = 0; i < iceCreamFlavors.length; i++) { ## 🚀 Desafío Hay otras formas de realizar un bucle sobre arreglos además de los bucles _for_ y _while_. Existen [forEach](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach), [for-of](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Statements/for...of), y [map](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array/map). Vuelve a escribir tu bucle en la matriz utilizando una de estas técnicas. -## [Post-lecture prueba](https://ashy-river-0debb7803.1.azurestaticapps.net/quiz/14) +## [Prueba de Conocimientos](https://ashy-river-0debb7803.1.azurestaticapps.net/quiz/14) ## Revisión y autoestudio