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>

Lakshmi Srinivas
Lakshmi Srinivas

Programmer / Analyst / Technician

Updated on: 21-May-2020

155 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements