Example analysis of call and apply usage in JavaScript

Source: Internet
Author: User
Tags inheritance

 call and apply usage, and use call to implement the JS class inheritance

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 The * * * Rectangle/function Rectangle (len,width) {this.len = len; this.width = width  }/* Times/function Multiply (a,b {return a * b;}//Rectangle instance var rectangle = new Rectangle (15, 30); To find the rectangular area var proportion = Multiply.call (Rectangle,rectangle.len, rectangle.width); Equivalent to call//var proportion = Multiply.apply (Rectangle,[rectangle.len, rectangle.width]);   document.write ("Rectangular area is:" +proportion); document.write ("<br/>");   document.write ("/*********************** Split Line ********************************/<br/>");  //Implementation inheritance function Persion (name) {this.name = name; This.sayhello = function () {return "Hello," +this.name;}} &NB Sp function Student (name,sex,school) {persion.call (this,name); this.sex = Sex; This.school = School;   This.mysex = function () {return this.sex.} this.myschool = function () {return this.school;}}   var stu = new Student (' fengjx ', ' Male ', ' Guangxi electromechanical Vocational Technical College ')   document.write ("Stu SayHello:" +stu.sayhello ()); document.write ("<br/>"); document.write ("Stu Sex is:" +stu.mysex ()); document.write ("<br/>"); document.write ("Stu School is:" +stu.myschool ()); document.write ("<br/>");

Demo diagram:

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.