From d53f706e0702b094321332c73488d1fff799502b Mon Sep 17 00:00:00 2001 From: gican Date: Wed, 16 Nov 2022 22:10:41 -0300 Subject: [PATCH 1/4] 1er actividad --- 02-JS-I/homework/homework.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/02-JS-I/homework/homework.js b/02-JS-I/homework/homework.js index 3c92ac9cdf..1578bbc1cd 100644 --- a/02-JS-I/homework/homework.js +++ b/02-JS-I/homework/homework.js @@ -1,13 +1,13 @@ // En estas primeras 6 preguntas, reemplaza `null` por la respuesta // Crea una variable "string", puede contener lo que quieras: -const nuevaString = null; +const nuevaString = 'tumama'; // Crea una variable numérica, puede ser cualquier número: -const nuevoNum = null; +const nuevoNum = 4; // Crea una variable booleana: -const nuevoBool = null; +const nuevoBool = true; // Resuelve el siguiente problema matemático: const nuevaResta = 10 - null === 5; From 621356c30b8f142a8d69bbd75493a361ff720dc0 Mon Sep 17 00:00:00 2001 From: gican Date: Wed, 16 Nov 2022 22:19:28 -0300 Subject: [PATCH 2/4] tu vieja --- 02-JS-I/homework/homework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-JS-I/homework/homework.js b/02-JS-I/homework/homework.js index 1578bbc1cd..273f69f699 100644 --- a/02-JS-I/homework/homework.js +++ b/02-JS-I/homework/homework.js @@ -10,7 +10,7 @@ const nuevoNum = 4; const nuevoBool = true; // Resuelve el siguiente problema matemático: -const nuevaResta = 10 - null === 5; +const nuevaResta = 10 - 5 === 5; // Resuelve el siguiente problema matemático: const nuevaMultiplicacion = 10 * null === 40 ; From cf28edab7fad01adbb90f463f898c7b9669f65ca Mon Sep 17 00:00:00 2001 From: gican Date: Wed, 16 Nov 2022 22:24:00 -0300 Subject: [PATCH 3/4] tumama2 --- 02-JS-I/homework/homework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-JS-I/homework/homework.js b/02-JS-I/homework/homework.js index 273f69f699..ebdfa2a38d 100644 --- a/02-JS-I/homework/homework.js +++ b/02-JS-I/homework/homework.js @@ -13,7 +13,7 @@ const nuevoBool = true; const nuevaResta = 10 - 5 === 5; // Resuelve el siguiente problema matemático: -const nuevaMultiplicacion = 10 * null === 40 ; +const nuevaMultiplicacion = 10 * 4 === 40 ; // Resuelve el siguiente problema matemático: const nuevoModulo = 21 % 5 === null; From b54e4cad3fa7e1ba9fc07ae2fad252c238b8871e Mon Sep 17 00:00:00 2001 From: gican Date: Wed, 16 Nov 2022 22:39:56 -0300 Subject: [PATCH 4/4] tumama3 --- 02-JS-I/homework/homework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02-JS-I/homework/homework.js b/02-JS-I/homework/homework.js index ebdfa2a38d..93bc113960 100644 --- a/02-JS-I/homework/homework.js +++ b/02-JS-I/homework/homework.js @@ -16,7 +16,7 @@ const nuevaResta = 10 - 5 === 5; const nuevaMultiplicacion = 10 * 4 === 40 ; // Resuelve el siguiente problema matemático: -const nuevoModulo = 21 % 5 === null; +const nuevoModulo = 21 % 5 === 1; // En los próximos 22 problemas, deberás completar la función.