How to print the content of JavaScript object?


To print content of JavaScript object, you can try to run the following code. Here, the object is created using the new keyword −

Example

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p id="test"></p>
      <script>
         var dept = new Object();
         dept.employee = "Amit";
         dept.department = "Technical";
         dept.technology ="C++";
         document.getElementById("test").innerHTML =
         dept.employee + " is working on " + dept.technology + " technology.";
      </script>
   </body>
</html>

Updated on: 16-Jun-2020

195 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements