Day 47 of #100daysofjs
Question 1
Write a program to show different alerts when different buttons are clicked
Answer
<!DOCTYPE html>
<html>
<head>
<title>Alert Demo</title>
</head>
<body>
<button onclick="alert('Button 1 clicked')">Button 1</button>
<button onc...
arpanmukherjee.hashnode.dev3 min read