Introduction

Here we take an example in which we create an instance of an object in javascript.
  1. <html>
  2. <body>
  3. <script type="text/javascript">
  4. x = { Fname: "Mahak", Lname: "Garg" }
  5. document.write("My Name is " + x.Fname + " " + x.Lname);
  6. </script>
  7. </body>
  8. </html>
Output:
1.png