You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Cambia este valor por tu nombre real
|
|
const STUDENT_NAME = "Josué Daniel";
|
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
const btn = document.getElementById("btn-saludo");
|
|
btn?.addEventListener("click", () => {
|
|
alert(`Hola ${STUDENT_NAME}`);
|
|
});
|
|
});
|