Javascript Course


This lesson shows how to chain object methods in JavaScript.
With the help of method chaining we can call more than one method or function of the object in a single instruction.

object.method_1().method_2()

To can chain multiple methods, the previous method (method_1() ) must return the object instance (this).

Syntaxa:
class className {
 constructor(){
 //here you can define the properties
 }

 metoda_1(){
 //JavaScript code

 return this; // returns the object instance
 }

 metoda_2(){
 //JavaScript instructions
 }
}

- Here's an example, a JavaScript class that can calculate the area and perimeter of the rectangle (see the comments in code and test it).
class Rectangle {
 constructor(){
 //properties
 this.a =0;
 this.b =0;
 }

 //sets values for a and b
 setAB(a1, b1){
 this.a = a1;
 this.b = b1;

 return this; // returns the object instance
 }

 // returns area
 area(){
 return this.a * this.b;
 }

 // returns perimeter
 perimeter(){
 return 2 * (this.a + this.b);
 }
}

//creates an object instance of the class
var obR = new Rectangle();

//Set the values to get the area and perimeter
var area = obR.setAB(7, 8).area();
var perimeter = obR.setAB(7, 8).perimeter();

// test
document.write('Area = '+ area +'<br>Perimeter = '+ perimeter);

Chaining multiple methods

You can chain more than two methods, the technique is the same, the public methods (that can be accessed outside) must be defined with the this keyword, and all the previous methods must return the object instance.


- Here is an example that chains three methods. A JavaScript object used to define HTML tag with ID, CSS class, and content (study the code and test it yourself).
class setTag {
 constructor(){
 //properties
 this.id = ''; // id attribute
 this.cls = ''; // class attribute
 }

 // sets id
 setId(id1){
 this.id = ' id="'+ id1 +'"';

 return this; // returns the object instance
 }

 // seteaza class attribute
 setClass(cls1){
 this.cls =' class="'+ cls1 +'"';

 return this; // returns the object instance
 }

 // returns the HTML and content
 getTagCnt(tag, cnt){
 return '<'+ tag + this.id + this.cls +'>'+ cnt +'</'+ tag+ '>';
 }
}

//creates an object instance of the class
var obTag = new setTag();

//variables with tag type and content
var tag = 'div';
var cnt = 'https://coursesweb.net';

//call methods chained to set ID, "class", and gets a <div> with those attributes
var getTag = obTag.setId('some_id').setClass('a_class').getTagCnt(tag, cnt);

// test
document.write(getTag); //<div id="some_id" class="a_class">https://coursesweb.net</div>
The instruction that chains the methods in the code above:
var getTag = obTag.setId('some_id').setClass('a_class').getTagCnt(tag, cnt);
It is the same with this:
// sets ID and css class, then gets the HTML tag with content
obTag.setId('some_id');
obTag.setClass('a_class');
var getTag = obTag.getTagCnt(tag, cnt);

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;
Defining classes with Methods that can be chained

Last accessed pages

  1. A simple script ActionScript 3 (4330)
  2. MySQL Query Builder: Insert, Update, Delete (1578)
  3. Ajax-PHP Chat Script (49222)
  4. Node.js Move and Copy Directory (19976)
  5. PHP Image with text on New Lines (2480)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (306)
  2. Read Excel file data in PHP - PhpExcelReader (108)
  3. The Four Agreements (92)
  4. PHP Unzipper - Extract Zip, Rar Archives (89)
  5. The Mastery of Love (84)
Chat
Chat or leave a message for the other users
Full screenInchide