7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
// Select button
|
|
const button = document.getElementById("btn");
|
|
|
|
// Add click event
|
|
button.addEventListener("click", function() {
|
|
alert("Hello! Welcome to my profile 🚀");
|
|
}); |