forked from marquez.juan/clase-10-ejercicios-de-repaso
ejercicio 1: saludo personalizado
This commit is contained in:
@@ -1 +1,13 @@
|
||||
// Agregar aquí el código javascript
|
||||
const nombreInput = document.getElementById('nombre');
|
||||
const saludarBtn = document.getElementById('saludar');
|
||||
const mensajeP = document.getElementById('mensaje');
|
||||
|
||||
saludarBtn.addEventListener('click', () => {
|
||||
const nombre = nombreInput.value.trim();
|
||||
|
||||
if (nombre === '') {
|
||||
mensajeP.textContent = 'Por favor, ingresá tu nombre.';
|
||||
} else {
|
||||
mensajeP.textContent = `Hola, ${nombre}!`;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user