Lesson 13: Mastering JavaScript Prompt, Alert and confirm with challenges!
π§ 1. alert(message)
β
What it is:
A built-in browser method to display a modal message box.
It halts the script execution until the user presses βOKβ.
πΉ Syntax:
alert("Hello world!");
π Behavior:
Displays a dialog box with a message and an O...
javascript-day-1.hashnode.dev4 min read