Property



Write a JavaScript code to declare property

<html>
  <head>
    <title>Object Property</title>
      <script>
          var student = {
                name: "Vijay",
                age: 21,
                year: "TY"
              };
              document.write(student.name);
      </script>
    </head>
  <body>       
</body>
</html>

Output:

Vijay