The new keyword in JavaScript is detailed

Source: Internet
Author: User
Tags object object

As in other high-level languages JavaScript also has the new operator, and we know that the new operator is used to instantiate a class to allocate an instance object in memory. But in JavaScript, all things are objects, why do we create objects through new? This article will bring you together to explore the mysteries of new in JavaScript ...

First, recognize the new operator:

function Animal(name){
        this.name = name;
    }
    Animal.color = "black";
    Animal.prototype.say = function(){
        console.log("I‘m " + this.name);
    };
    var cat = new Animal("cat");

    console.log(
       cat.name,  //cat
       cat.height //undefined
    );
    cat.say(); //I‘m cat

    console.log(
       Animal.name, //Animal
       Animal.color //back
    );
    Animal.say(); //Animal.say is not a function

Constructor prototype Object object instance (2018-09-09--Baidu map gives inspiration)


Source: https://www.cnblogs.com/AaronNotes/p/6529492.html

The new keyword in JavaScript is detailed

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.