<!DOCTYPE html>
<html>

  <head>
    <link rel="stylesheet" href="style.css">
    <script src="script.js"></script>
  </head>

  <body>
    <h1>Object.create ,check console</h1>
  </body>
  
  <script>
    
// Animal properties and method encapsulation
var Animal = {
 type: 'Invertebrates', // Default value of properties
 displayType: function() {  // Method which will display type of Animal
   console.log(this.type);
 }
};

// Create new animal type called animal1
var animal1 = Object.create(Animal);
animal1.displayType(); // Output:Invertebrates
// Create new animal type called Fishes
var fish = Object.create(Animal);
fish.type = 'Fishes';
fish.displayType(); // Output:Fishes


  </script>

</html>
// Code goes here

/* Styles go here */