Javascript Course


Creating subclasses with extends

In JavaScript you can create subclasses (as a child class of another class) with the extends keyword.
The subclass inherits and can extend the properties and methods defined in parent class.
If the subclass has no constructor(), it will be used the constructor() of the parent class.


- Example:
<div id='ex_res'>Shows response</div>

<script>
//Base class
class User {
 constructor(name){
 //set property
 this.name = name;
 }

 //method
 sayHi(){
 return 'Hello '+ this.name;
 }
}

//Subclass
class Gamer extends User {
 //method that uses the name property defined in parent class
 sayBye(){
 return 'Goodbye '+ this.name;
 }
}

//Usage

//set an object instance of subclass
//it needs an argument because it is used the parent constructor()
let ob_gbr = new Gamer('MarPlo');

//calls the sayHi() method defined in the parent class (User)
var hi = ob_gbr.sayHi();

//calls the method defined in subclass
var bye = ob_gbr.sayBye();

//shows the value of 'hi' and 'bye' in Div #ex_res
document.getElementById('ex_res').innerHTML ='<h3>'+hi+'<br>'+bye+'</h3>';
</script>

Class Inheritance, super

The subclass inherits the properties and methods defined in parent class (including static methods).
If there is a constructor present in subclass, it needs to first call super() before using "this".
To rewrite in subclass some properties and methods from parent class, just define them again in subclass.


- Example:
<div id='ex_res'>Shows response</div>

<script>
//Base class
class Parent {
 constructor(name){
 //set property
 this.name = name;
 }

 //method
 sayHi(){
 return 'Hello '+ this.name;
 }
}

//Subclass
class Child extends Parent {
 constructor(name){
 //apply super to include parent constructor and pass in the name parameter
 super(name);

 //here you can rewrite or define properties

 this.site ='CoursesWeb.net';
 }

 //rewrite method from parent
 sayHi(){
 return 'From Subclass, site: '+ this.site +'<br>Hello '+ this.name;
 }
}

//Usage

//set an object instance of subclass Child
let obj = new Child('MarPlo');

//calls the sayHi() method, rewrited in child class
var hi = obj.sayHi();

//shows the value of 'hi' in Div #ex_res
document.getElementById('ex_res').innerHTML ='<h2>'+hi+'</h2>';
</script>

Class Methods with super

The super keyword is used to call corresponding methods of super class. It is used when you don't want to totally replace the parent method, but to add new instructions to it.
Classes provide "super" keyword for that.


- Example:
<div id='ex_res'>Shows response</div>

<script>
//Base class
class Parent {
 constructor(name){
 //set property
 this.name = name;
 }

 //method
 sayHi(){
 return 'Hello '+ this.name;
 }
}

//Subclass
class Child extends Parent {
 constructor(name, site){
 //apply super to include parent constructor and pass in the name parameter
 super(name);

 //here you can rewrite or define properties
 this.site = site;
 }

 //reuse method from parent
 sayHi(){
 var hi = super.sayHi(); //gets data returned by parent method

 //here you can add new instructions

 return hi +'<br>From: '+ this.site;
 }
}

//Usage

//set an object instance of subclass Child
let obj = new Child('MarPlo', 'CoursesWeb.net');

//calls the sayHi() method redefined in the Child class
var hi = obj.sayHi();

//shows the value of 'hi' in Div #ex_res
document.getElementById('ex_res').innerHTML ='<h2>'+hi+'</h2>';
</script>

super in static methods

The "super" keyword can be applied in static methods too.
- Example:
<script>
//Base class
class Parent {
 //static method
 static sayHi(name){
 alert('Hello '+ name +' from parent');
 }
}

//Subclass
class Child extends Parent {
 //redefine the static method
 static sayHi(name, name2){
 super.sayHi(name); //include the method from parent
 alert('Hello '+ name2 +' from subclass');
 }
}

//calls the static method from subclass
Child.sayHi('MarPlo', 'Gamv');
</script>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which tag create a highlighted bolded text?
<q> <strong> <em>
<p>Address: <strong>http://CoursesWeb.net/</strong> - Tutorials.</p>
Which of these CSS codes displays the text bolded?
text-size: 18px; font-style: italic; font-weight: 800;
#id {
  font-weight: 800;
}
What JavaScript function can be used to call another function multiple times, to a specified time interval?
setInterval() setTimeout() push()
function someFunction() { alert("CoursesWeb.net"); }
setInterval("someFunction()", 2000);
Click on the correctly defined variable in PHP.
var vname = 8; $vname = 8; $vname == 8;
$vname = 8;
echo $vname;
Subclass with extends and Inheritance

Last accessed pages

  1. Zodiac Signs JavaScript code (10631)
  2. How to use php variable in external js file (3470)
  3. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (134086)
  4. Node.js Move and Copy file (27511)
  5. Get Attribute (ID, Class, Name, Title, Src) with jQuery (74116)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (383)
  2. SHA1 Encrypt data in JavaScript (292)
  3. PHP Unzipper - Extract Zip, Rar Archives (275)
  4. SHA256 Encrypt hash in JavaScript (264)
  5. Read Excel file data in PHP - PhpExcelReader (245)