How to work with document.title in JavaScript?


Use the document.title property to set the title of the document in JavaScript.

Example

You can try to run the following code to implement document.title property in JavaScript.

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <title>Demo Title</title>
   </head>
   <body>
      <script>
         var x = document.title;
         document.write("Our Title: "+x);
      </script>
   </body>
</html>

Updated on: 21-May-2020

184 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements