Subir archivos a "/"

This commit is contained in:
2026-05-29 13:09:20 +00:00
parent 809d1538e5
commit 0e3008f15d
5 changed files with 48 additions and 0 deletions

8
Clase 6 ejercicio 1.js Normal file
View File

@@ -0,0 +1,8 @@
let nombre = "Bruno";
let edad = "17";
if (edad > 18) {
console.log("Bruno, mayor de edad");
} else if (edad < 18) {
console.log("Bruno, menor de edad");
}