From 19179ec93860fde0d710f8d03adbb8b63c7c4419 Mon Sep 17 00:00:00 2001 From: NicolasOrtiz Date: Thu, 22 Aug 2024 23:59:02 +0200 Subject: [PATCH] en progreso --- Basic/00-helloworld.js | 3 ++- Basic/01-variables.js | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Basic/00-helloworld.js b/Basic/00-helloworld.js index b588eb0b..1ed1ff1b 100644 --- a/Basic/00-helloworld.js +++ b/Basic/00-helloworld.js @@ -31,4 +31,5 @@ console.log(5 - 2) console.log(5 * 2) console.log(5 / 2) console.log(5 % 2) -console.log(5 ** 2) \ No newline at end of file +console.log(5 ** 2) + diff --git a/Basic/01-variables.js b/Basic/01-variables.js index 37dae46e..6c985836 100644 --- a/Basic/01-variables.js +++ b/Basic/01-variables.js @@ -4,13 +4,15 @@ Introducción, instalación, hola mundo y variables https://www.youtube.com/live/hoULS5isDck?si=qtcStT34Ef8ETBmB&t=915 */ -// var - +// var - ya no se usa salvo un motivo extremadamente concreto. +/* var helloWorld = "¡Hola, JavaScript!" console.log(helloWorld) helloWorld = "¡Hola de nuevo, JavaScript!" console.log(helloWorld) +*/ + // let