JavaScript design pattern and open Practice Learning (ii) Borrowing of object methods

Source: Internet
Author: User

1. Borrowing the constructor function

varA=function(name) { This. name=name; }    varb=function() {a.apply ( This, arguments);//to borrow A's function constructor} b.prototype.getname=function () {        return  This. Name;    }; varb=NewB (' Seven ')); Console.log (B.getname ());//output Seven

2, arguments adding and deleting elements

Arguments Although there is "subscript", but not the real array, if the additions and deletions of elements, need to borrow Array.prototype a series of methods.

New:

(function  () {        Array.prototype.push.call (arguments,3);        Console.log (arguments);//Output []})//Declare anonymous function, parameter is

Note: To implement the method of the function of borrowing, need to meet two points: the object itself to be able to access the property, the object's Length property can read and write

JavaScript design pattern and open Practice Learning (ii) Borrowing of object methods

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.