Javascript reference type

Source: Internet
Author: User

In JS, values, Boolean values, null, and undefined belong to the basic type, while objects, arrays, and functions belong to the reference type.

Two problems to be solved in this blog post are:

    • After a references B, the relationship between A and B is: =, =, or other.
    • After a references B and B is redirected, A retains the original reference or follows B's new direction.
 
/*** Filename: appointtest. js * Description: This file is used to find out how a appiont work. * Author: Empty hunting deCode* Date: 2012/3/8 */Ext. onready (function () {/*** function for print */var print = console. log; var printall = function (ARR, OBJ) {print ("arr [0] =" + Ext. encode (ARR [0]); print ("OBJ =" + Ext. encode (OBJ); print (ARR [0] = OBJ); print (ARR [0] = OBJ );} /*** Test Data */var OBJ = {Name: 'EMPTY hunting de Code'} var arr = [OBJ]; obj. age = 23; // will this new property be added to Arr? Printall (ARR, OBJ); // redirect OBJ to another object. OBJ = {holobby: 'thinking'} printall (ARR, OBJ); // After redirecting OBJ, does arr [0] Change ?});

Running result diagram:

As you can see,The newly added age attribute also affects arr;

HoweverAfter OBJ redirection, arr does not change with OBJ, but points to the original reference.

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.