<code> Editor
Home
<!DOCTYPE html> <html> <body> <h1>Demo: alert()</h1> <script> alert("This is alert box!"); // display string message alert(100); // display number alert(true); // display boolean </script> </body> </html>
Result: