const encabezado = document.querySelector('h1');
encabezado.innerHTML = "Hora del Desafío";
const mensaje = () => {
console.log('El botón fue clicado');
}
const preguntarCiudad = () => {
let ciudad = prompt("INGRESE UNA CIUDAD DE BRASIL: ");
alert(`Estuve en ${ciudad} y me acordé de ti`);
}
const mensajeAlerta = () => {
alert('Yo amo JS');
}
const suma = () => {
let num1 = parseInt(prompt("INGRESE PRIMER NUMERO: "));
let num2 = parseInt(prompt("INGRESE SEGUNDO NUMERO: "));
if (!isNaN(num1) && !isNaN(num2)) {
alert(`La suma de ${num1} + ${num2} = ${num1 + num2}`);
}
}