Create a real-time digital clock that updates every second. Use JavaScript to display the current hours, minutes, and seconds dynamically. Format the time properly in HH:MM:SS format.
✅ Use JavaScript’s setInterval() to update the time continuously.
✅ Learn how to manipulate the Date object (new Date()) to get the current time.
✅ Understand DOM manipulation to display dynamic content.
💡 Add a 12-hour format toggle (AM/PM).
💡 Show the current date below the time.

