<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title>Variables de JavaScript by Kimberly Suceth Barrera Chavez</title>
      <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy</link>
      <description>Plan de Clase 1</description>
      <language>en-us</language>
      <pubDate>2025-04-30 16:03:21 UTC</pubDate>
      <lastBuildDate>2025-05-01 03:09:02 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url>https://unipython.com/wp-content/uploads/2015/11/java-329x216.jpg</url>
      </image>
      <item>
         <title>Number</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431913658</link>
         <description><![CDATA[<p><strong>Number: </strong>Los valores representan números de punto flotante como 37o -9.25.</p><p>El Numberconstructor contiene constantes y métodos para trabajar con números. Los valores de otros tipos se pueden convertir a números mediante la Number()función.</p><p><br/></p><p>Los números se expresan más comúnmente en formas literales como 255o 3.14159. La <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Lexical_grammar#numeric_literals">gramática léxica</a> contiene una referencia más detallada.</p><p><br/></p><p>Cuando se usa como función, Number(value)convierte una cadena u otro valor al tipo numérico. Si el valor no se puede convertir, devuelve <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/NaN">NaN</a>.</p><p><br/></p><p><mark>Sintaxis:  Number("123"); // returns the number 123 Number("123") === 123; // true  Number("unicorn"); // NaN Number(undefined); // NaN</mark></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/9b61d3696dc81e82e2c0473e66353c9e/descarga.png" />
         <pubDate>2025-04-30 16:18:51 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431913658</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431934192</link>
         <description><![CDATA[<p>(Números)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/e305c050bdc51378de580769d3c9f2e7/image.png" />
         <pubDate>2025-04-30 16:36:22 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431934192</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431935254</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/672ec1aae9b1b1ff0901c7c0ea363022/image.png" />
         <pubDate>2025-04-30 16:37:16 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431935254</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431937597</link>
         <description><![CDATA[<p>Incluye enteros y decimales. En JavaScript no hay diferencia entre int y float. Ejemplos: 5, 3.14, -100.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-04-30 16:39:26 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431937597</guid>
      </item>
      <item>
         <title>let</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431945156</link>
         <description><![CDATA[<p><strong>let</strong> te permite declarar variables limitando su alcance (<em>scope</em>) al bloque, declaración, o expresión donde se está usando.a diferencia de la palabra clave var la cual define una variable global o local en una función sin importar el ámbito del bloque. La otra diferencia entre var y let es que este último se inicializa a un valor sólo cuando un analizador lo evalúa (ver abajo).</p><p>Al igual que const, let no crea propiedades del objeto se declara globalmente (en el alcance más alto).</p><p><br/></p><p>Sintaxis: let var1 [= valor1] [, var2 [= valor2]] [, ..., varN [= valorN]];
</p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/07cc465bb3c6f92b70202aa265d21a9c/descarga.jpg" />
         <pubDate>2025-04-30 16:46:02 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431945156</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431947408</link>
         <description><![CDATA[<p>(cadenas de texto)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/48cffc5e55b140098640acf1907af193/image.png" />
         <pubDate>2025-04-30 16:48:00 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431947408</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431966509</link>
         <description><![CDATA[<p>Representa texto, como palabras, frases o cualquier secuencia de caracteres. Ejemplos: "Hola", "123", "usuario".</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-04-30 17:04:17 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431966509</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431972302</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/3c75d2f480e42e674621bfcc9b0749d6/image.png" />
         <pubDate>2025-04-30 17:09:19 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3431972302</guid>
      </item>
      <item>
         <title>Boolean</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432430298</link>
         <description><![CDATA[<p>Los valores booleanos suelen generarse mediante <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#relational_operators">operadores relacionales</a> , <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#equality_operators">operadores de igualdad</a> y <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Logical_NOT">NOT ( !)</a> lógicos . También pueden generarse mediante funciones que representan condiciones, como [ <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray">Array.isArray()</a>]. Tenga en cuenta que <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators#binary_logical_operators">los operadores lógicos binarios</a> , como [ ] &amp;&amp;y [ ] ||, devuelven los valores de los operandos, que pueden ser booleanos o no.</p><p>Los valores booleanos se utilizan normalmente en pruebas condicionales, como la condición para las declaraciones <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/if...else">if...else</a>y <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/while">while</a>, el <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Conditional_operator">operador condicional</a> ( ? :) o el valor de retorno del predicado de <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter">Array.prototype.filter()</a>.</p><p><br></p><p><mark>Sintaxis: const good = Boolean(expression);</mark></p><p><mark>const good2 = !!expression;</mark></p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/40d5a93726f0d98c84864d3cb1a13d8f/image.png" />
         <pubDate>2025-05-01 02:03:54 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432430298</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432431675</link>
         <description><![CDATA[<p>(booleanos)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/1f6baabc825987659b7fbe6f69afbb20/image.png" />
         <pubDate>2025-05-01 02:05:00 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432431675</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432432699</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/a4e47f69a44ce8e36e057d3c5b2123fc/image.png" />
         <pubDate>2025-05-01 02:05:54 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432432699</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432433257</link>
         <description><![CDATA[<p>Tienen solo dos valores posibles: true o false. Son especialmente útiles en estructuras de control como if, para evaluar condiciones lógicas.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:06:16 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432433257</guid>
      </item>
      <item>
         <title>Array </title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432435627</link>
         <description><![CDATA[<p>En JavaScript, las matrices no son <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Glossary/Primitive">primitivas</a> sino Arrayobjetos con las siguientes características principales:</p><ul><li><p><strong>Las matrices de JavaScript son redimensionables</strong> y <strong>pueden contener una combinación de diferentes </strong><a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Data_structures"><strong>tipos de datos</strong></a> . (Cuando estas características no sean deseables, utilice <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Typed_arrays">matrices tipificadas</a> ).</p></li><li><p><strong>Las matrices de JavaScript no son matrices asociativas</strong> y, por lo tanto, no se puede acceder a los elementos de la matriz utilizando cadenas arbitrarias como índices, sino que se debe acceder a ellos utilizando números enteros no negativos (o su respectiva forma de cadena) como índices.</p><p><br/></p></li></ul><p><mark>Sintaxis: console.log(years["2"] !== years["02"]);</mark></p><p><br/></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/825fe582a1932f1dc38f6eb342f28359/image.png" />
         <pubDate>2025-05-01 02:08:26 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432435627</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432436985</link>
         <description><![CDATA[<p>(arreglos)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/98925ec055f4e320d96f5bc06bb5cc47/image.png" />
         <pubDate>2025-05-01 02:09:41 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432436985</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432437421</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/21dcd47093adf5cd03a8645f20ff4e2d/image.png" />
         <pubDate>2025-05-01 02:10:06 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432437421</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432438937</link>
         <description><![CDATA[<p>Son listas ordenadas de elementos, que pueden ser de cualquier tipo, incluso combinados. Por ejemplo: ["rojo", "verde", "azul"] o [1, 2, true, "texto"]. Los arrays permiten agrupar datos relacionados.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:11:20 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432438937</guid>
      </item>
      <item>
         <title>Object</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432440936</link>
         <description><![CDATA[<p>Casi todos <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Data_structures#objects">los objetos</a> en JavaScript son instancias de Object; un objeto típico hereda propiedades (incluidos los métodos) de Object.prototype, aunque estas propiedades pueden estar ocultas (es decir, sobreescritas). Los únicos objetos que no heredan de Object.prototypeson aquellos con <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object#null-prototype_objects">nullprototipo</a> o que descienden de otros nullobjetos prototipo.</p><p>Los cambios en el Object.prototypeobjeto son visibles para <strong>todos</strong> los objetos mediante el encadenamiento de prototipos, a menos que las propiedades y métodos sujetos a dichos cambios se sobrescriban posteriormente en la cadena de prototipos.</p><p><br/></p><p><mark>Sintaxis:const obj = Object.create(null);</mark></p><p><mark>const obj2 = { </mark><strong><mark>proto</mark></strong><mark>: null };</mark></p><p><br/></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/181dcaffe88fe0f75922fd497cd66bbd/image.png" />
         <pubDate>2025-05-01 02:12:59 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432440936</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432441539</link>
         <description><![CDATA[<p>(objetos)</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/34face045a400ae2fdc9099f3dbbfd9b/image.png" />
         <pubDate>2025-05-01 02:13:30 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432441539</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432442224</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/139ef66748cf34e7239cc72b3dcdfe8e/image.png" />
         <pubDate>2025-05-01 02:14:03 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432442224</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432442579</link>
         <description><![CDATA[<p>Son colecciones de pares clave: valor, que representan entidades más complejas. Por ejemplo, un objeto persona puede tener nombre, edad y ocupación. Ejemplo:<br>{ nombre: "Ana", edad: 30 }.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:14:21 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432442579</guid>
      </item>
      <item>
         <title>Undefined</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432444628</link>
         <description><![CDATA[<p>Undefined es una propiedad del objeto global. Es decir, es una variable de alcance global.</p><p>En todos los navegadores que no son heredados, undefined es una propiedad no configurable ni modificable. Incluso si no es así, evite sobrescribirla.</p><p>Una variable a la que no se le ha asignado un valor es de tipo undefined. Un método o una sentencia también devuelve undefined si la variable que se evalúa no tiene un valor asignado. Una función devuelve undefined si no se devolvió un valor.</p><p><br></p><p><mark>Sintaxis: let x;</mark></p><p><mark>if (x === undefined) {</mark></p><p><mark>  // these statements execute</mark></p><p><mark>} else {</mark></p><p><mark>  // these statements do not execute</mark></p><p><mark>}</mark></p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/5324efc568fe90c3c0953301f3cbc3dd/image.png" />
         <pubDate>2025-05-01 02:15:55 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432444628</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432445756</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/e5f26da181ee97221c1aad07b9871117/image.png" />
         <pubDate>2025-05-01 02:16:48 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432445756</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432449637</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/4ecfc02242347262149e271d61f39377/image.png" />
         <pubDate>2025-05-01 02:19:56 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432449637</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432450000</link>
         <description><![CDATA[<p>Es el valor por defecto que tiene una variable cuando ha sido declarada pero no se le ha asignado ningún valor. También se usa para indicar la ausencia de valor intencional o por error.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:20:13 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432450000</guid>
      </item>
      <item>
         <title>Null</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432472623</link>
         <description><![CDATA[<p>El valor nulo se escribe con un literal: nulo. Nulo no es un identificador de una propiedad del objeto global, como puede ser undefined. En cambio, nulo expresa falta de identificación, lo que indica que una variable no apunta a ningún objeto. En las API, nulo se recupera a menudo donde se espera un objeto, pero ningún objeto es relevante.</p><p><br></p><p><mark>Sintaxis:typeof null; // "object" (not "null" for legacy reasons)</mark></p><p><mark>typeof undefined; // "undefined"</mark></p><p><mark>null === undefined; // false</mark></p><p><mark>null == undefined; // true</mark></p><p><mark>null === null; // true</mark></p><p><mark>null == null; // true</mark></p><p><mark>!null; // true</mark></p><p><mark>Number.isNaN(1 + null); // false</mark></p><p><mark>Number.isNaN(1 + undefined); // true</mark></p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/09c5d3754d41d796e20d8bf26832e41b/image.png" />
         <pubDate>2025-05-01 02:39:52 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432472623</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474294</link>
         <description><![CDATA[<p>Valores nulos</p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/ce5dbccb962e0e642868d0c05ccb281d/image.png" />
         <pubDate>2025-05-01 02:40:58 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474294</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474564</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/63165fb613c080a232044f07279c352f/image.png" />
         <pubDate>2025-05-01 02:41:15 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474564</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474948</link>
         <description><![CDATA[<p>Es un valor especial que representa la "ausencia intencionada de cualquier valor". A diferencia de undefined, null es asignado explícitamente por el programador para indicar que una variable está vacía a propósito.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:41:36 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432474948</guid>
      </item>
      <item>
         <title>BigInt</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432490881</link>
         <description><![CDATA[<p>Un <strong>valor BigInt</strong>, a veces también llamado solamente <strong>BigInt</strong>, es un <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/es/docs/Glossary/Primitive">primitivo</a> bigint, creado al anexar una n al final de un literal entero o llamando a la función BigInt() (sin el operador new) y dándole un valor ded entero o un valor de cadena.</p><p><br/></p><p><mark>Sintaxis: const previouslyMaxSafeInteger = 9007199254740991n;</mark></p><p><mark>const alsoHuge = BigInt(9007199254740991);</mark></p><p><mark>// 9007199254740991n</mark></p><p><mark>const hugeString = BigInt("9007199254740991");</mark></p><p><mark>// 9007199254740991n</mark></p><p><mark>const hugeHex = BigInt("0x1fffffffffffff");</mark></p><p><mark>// 9007199254740991n</mark></p><p><mark>const hugeOctal = BigInt("0o377777777777777777");</mark></p><p><mark>// 9007199254740991n</mark></p><p><mark>const hugeBin = BigInt(</mark></p><p><mark>  "0b11111111111111111111111111111111111111111111111111111",</mark></p><p><mark>);</mark></p><p><mark>// 9007199254740991n</mark></p><p><br/></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/09565587d93db00ee8a89569bc0da9e3/image.png" />
         <pubDate>2025-05-01 02:55:06 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432490881</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432491645</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/a9cf687f1526859b20d8b2b030d7ca29/image.png" />
         <pubDate>2025-05-01 02:55:44 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432491645</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432492051</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/56f8a9321494bd5601d8584f486167d1/image.png" />
         <pubDate>2025-05-01 02:56:07 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432492051</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432492317</link>
         <description><![CDATA[<p>Permite representar números enteros muy grandes que superan el límite del tipo Number. Se define agregando una n al final: 12345678901234567890n.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 02:56:23 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432492317</guid>
      </item>
      <item>
         <title>Symbol</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432498300</link>
         <description><![CDATA[<p><strong>Symbol</strong>es un objeto incorporado cuyo constructor devuelve un symbol <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/es/docs/Glossary/Primitive">primitivo</a> — también llamado <strong>Symbol value</strong> o simplemente <strong>Symbol</strong> — que está garantizado que sea único. Los Símbolos se utilizan a menudo para añadir claves de propiedades únicas a un objeto que no sean iguales a las claves que cualquier otro código pueda añadir al objeto, y que están ocultas de cualquier mecanismo que otro código utilice normalmente para acceder al objeto. Esto permite una forma de <a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/es/docs/Glossary/Encapsulation">encapsulación</a> débil, o una forma débil de <a rel="noopener noreferrer nofollow" class="external" href="https://en.wikipedia.org/wiki/Information_hiding">ocultación de información.</a></p><p><br></p><p><mark>Sintaxis:let sym1 = Symbol();</mark></p><p><mark>let sym2 = Symbol("foo");</mark></p><p><mark>let sym3 = Symbol("foo");</mark></p><p><br></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/ca5c4b92670aaad0f30387205d3e32ec/image.png" />
         <pubDate>2025-05-01 03:01:31 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432498300</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499016</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/9b101640ffac80c9666082d8c8b396ad/image.png" />
         <pubDate>2025-05-01 03:02:15 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499016</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499282</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/922f6cbea34701ab38429df9685c994b/image.png" />
         <pubDate>2025-05-01 03:02:27 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499282</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499549</link>
         <description><![CDATA[<p>Representa un valor único e inmutable. Se usa comúnmente como identificador único para propiedades de objetos.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 03:02:44 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432499549</guid>
      </item>
      <item>
         <title>Function</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432501475</link>
         <description><![CDATA[<p>Las funciones son uno de los componentes fundamentales de JavaScript. Una función en JavaScript es similar a un procedimiento: un conjunto de sentencias que realiza una tarea o calcula un valor. Sin embargo, para que un procedimiento se considere una función, debe recibir una entrada y devolver una salida donde exista una relación obvia entre ambas. Para usar una función, debe definirla en algún lugar del ámbito desde el que desea llamarla.</p><p><br/></p><p><mark>Sintaxis:function square(number) {</mark></p><p><mark>  return number * number;</mark></p><p><mark>}</mark></p><p><br/></p>]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/56edbae5aba8b5c936649c551108fcd7/image.png" />
         <pubDate>2025-05-01 03:04:29 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432501475</guid>
      </item>
      <item>
         <title>Ejemplos</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432502681</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/0b3dbc1dd8e17df9936910622cdc6691/image.png" />
         <pubDate>2025-05-01 03:04:52 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432502681</guid>
      </item>
      <item>
         <title>Ejecución</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432503119</link>
         <description><![CDATA[]]></description>
         <enclosure url="https://padlet-uploads.storage.googleapis.com/3768151917/c62aa7b807eb6093edb0f6c9dccd9087/image.png" />
         <pubDate>2025-05-01 03:05:18 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432503119</guid>
      </item>
      <item>
         <title>Comentario</title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432503458</link>
         <description><![CDATA[<p>Aunque técnicamente es un tipo especial de objeto, se considera un tipo estructurado importante. Una función puede ser almacenada en una variable, pasada como argumento y ejecutada más tarde. Ejemplo:<br>function saludar() { console.log("Hola"); }</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 03:05:37 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432503458</guid>
      </item>
      <item>
         <title></title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432504577</link>
         <description><![CDATA[<p>Cada tipo de dato tiene comportamientos y usos distintos. Por ejemplo, comparar un Number con un String puede generar resultados inesperados si no se manejan adecuadamente. Usar el tipo correcto permite que el código sea más claro y confiable.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 03:06:43 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432504577</guid>
      </item>
      <item>
         <title></title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432504807</link>
         <description><![CDATA[<p>A diferencia de otros lenguajes con tipado estricto, en JavaScript una misma variable puede contener un número, luego una cadena, y después un objeto. Esto da flexibilidad, pero también requiere cuidado para evitar confusión y errores lógicos.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 03:06:54 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432504807</guid>
      </item>
      <item>
         <title></title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432505020</link>
         <description><![CDATA[<p>Tipos como Array, Object y Function no solo almacenan datos, sino que permiten construir estructuras y comportamientos más complejos. Dominar su uso es fundamental para construir aplicaciones reales.</p>]]></description>
         <enclosure url="" />
         <pubDate>2025-05-01 03:07:04 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432505020</guid>
      </item>
      <item>
         <title></title>
         <author>kimberlybarrera5</author>
         <link>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432506214</link>
         <description><![CDATA[<p><a rel="noopener noreferrer nofollow" href="https://developer.mozilla.org/en-US/docs/Web/JavaScript">https://developer.mozilla.org/en-US/docs/Web/JavaScript</a></p>]]></description>
         <enclosure url="https://developer.mozilla.org/en-US/docs/Web/JavaScript" />
         <pubDate>2025-05-01 03:08:00 UTC</pubDate>
         <guid>https://padlet.com/kimberlybarrera5/fr927c34jh844qvy/wish/3432506214</guid>
      </item>
   </channel>
</rss>
