C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
JavaScript AbstractionAn abstraction is a way of hiding the implementation details and showing only the functionality to the users. In other words, it ignores the irrelevant details and shows only the required one. Points to remember
JavaScript Abstraction ExampleExample 1Let's check whether we can create an instance of Abstract class or not. <script> //Creating a constructor function function Vehicle() { this.vehicleName= vehicleName; throw new Error("You cannot create an instance of Abstract class"); } Vehicle.prototype.display=function() { return this.vehicleName; } var vehicle=new Vehicle(); </script> Example 2Let's see an example to achieve abstraction. <script> //Creating a constructor function function Vehicle() { this.vehicleName="vehicleName"; throw new Error("You cannot create an instance of Abstract Class"); } Vehicle.prototype.display=function() { return "Vehicle is: "+this.vehicleName; } //Creating a constructor function function Bike(vehicleName) { this.vehicleName=vehicleName; } //Creating object without using the function constructor Bike.prototype=Object.create(Vehicle.prototype); var bike=new Bike("Honda"); document.writeln(bike.display()); </script> Output: Vehicle is: Honda Example 3In this example, we use instanceof operator to test whether the object refers to the corresponding class. <script> //Creating a constructor function function Vehicle() { this.vehicleName=vehicleName; throw new Error("You cannot create an instance of Abstract class"); } //Creating a constructor function function Bike(vehicleName) { this.vehicleName=vehicleName; } Bike.prototype=Object.create(Vehicle.prototype); var bike=new Bike("Honda"); document.writeln(bike instanceof Vehicle); document.writeln(bike instanceof Bike); </script> Output: true true
Next Topic#
|