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 attribute specifies the URL address where to send the form-data?
method action name
<form action="script.php" method="post"> ... </form>
Which CSS property can be used to break lines in the middle of words?
word-wrap line-height font-size
#id {
  width: 100px;
  word-wrap: break-word;
}
Which function sorts the elements of an array into alphabetical order, based on the string values?
pop() sort() shift()
var tutorials = ["php", "html", "css", "flash"];
tutorials.sort();
alert(tutorials[0]);          // css
Indicate the function that returns the value of the last element into an array.
current() next() end()
$code =[10=>"Perl", 20=>"PHP", 21=>"Python", 30=>"JavaScript");
$last = end($code);
echo $last;      // JavaScript
Defining classes with Methods that can be chained

Last accessed pages

  1. Get and Modify content of an Iframe (32113)
  2. Get Attribute (ID, Class, Name, Title, Src) with jQuery (74433)
  3. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137761)
  4. JavaScript Scripts (2888)
  5. Integer and Float value in Select with PDO from string to numeric (8580)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (74)
  2. Read Excel file data in PHP - PhpExcelReader (21)
  3. PHP Unzipper - Extract Zip, Rar Archives (20)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (15)
  5. SSEP - Site Search Engine PHP-Ajax (15)
Chat
Chat or leave a message for the other users
Full screenInchide