5 Rules of javascript--prototypes

Source: Internet
Author: User

Tag: URI has a console implicit BSP Java Log ext post

1, all reference types (objects, arrays, functions), all have object attributes, can be freely extended properties (except null)
var obj ==; var arr ==; function  = 100;
2. All reference types (objects, arrays, functions) have a __proto__ property, and the property value is a normal object. (__proto__ is called implicit prototype) (except for null)
Console.log (obj.__proto__); Console.log (arr.__proto__);
Console.log (fn.__proto__);
3, all functions, there is a prototype property, the property value is also a normal object. (prototype is called display prototype)
Console.log (Fn.prototype);

5 Rules of javascript--prototypes

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.