x
 
<!DOCTYPE html>
<html>
<body>
    <button onclick="docOpen()">Create Doc</button>
    <script>
        function docOpen(){
            document.open();
            document.write("I am Raju, ");
            document.write("I am software Engineer");
            document.close();
        }
    </script>
</body>
</html>