JavaScript Program to Display Message on Status bar

Write a JavaScript program to display message on status bar.



Source Code
<html>
<head>
    <title>Changing Window status text</title>
    <script type="text/javaScript">
        window.defaultStatus = "Hello and Welcome";
    </script>
</head>
<body>
</body>
</html>
Output