JavaScript Alert() Method

JavaScript Alert() Method

Alert box is used to show information in popup to user and user has to click ‘OK’ button to proceed.

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>
<body>
    <script id="javascript">
       alert("Hello Akshay");
    </script>
</body>
</html>

image.png