<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: JulianLlanten8</title>
    <description>The latest articles on DEV Community by JulianLlanten8 (@julianllanten8).</description>
    <link>https://dev.to/julianllanten8</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F519400%2Fc8e0747d-b056-4c74-ad2f-c6efad5ad236.png</url>
      <title>DEV Community: JulianLlanten8</title>
      <link>https://dev.to/julianllanten8</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/julianllanten8"/>
    <language>en</language>
    <item>
      <title>¿Se puede leer un array con el ciclo while?</title>
      <dc:creator>JulianLlanten8</dc:creator>
      <pubDate>Mon, 01 Feb 2021 04:04:11 +0000</pubDate>
      <link>https://dev.to/julianllanten8/se-puede-leer-un-array-con-el-ciclo-while-i08</link>
      <guid>https://dev.to/julianllanten8/se-puede-leer-un-array-con-el-ciclo-while-i08</guid>
      <description>&lt;p&gt;Claro que si, cuando aprendí a programar recuerdo que para recorrer cualquier array usaba mucho el ciclo de repetición while y pues a lo largo lo fui dejando de utilizar tanto así que no recordaba como iba, también porque me dijeron que el ciclo no era muy recomendado entonces en este post he decido recordarlo.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;const arreglo = [1,2,3,4,5,6,7,8,9,10];

var iterador = 0;

while(iterador &amp;lt; arreglo.length){
  console.log(arreglo[iterador]);
  iterador++;
}
//salida : 1 2 3 4 5 6 7 8 9 10
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
  </channel>
</rss>
