JavaScript basic properties access to object properties and methods

Source: Internet
Author: User

var myName = "Shelley"; String base type

alert (myname.length); Implicitly creates a string object with the same value as myname and executes the length method

In the example above, just a string primitive type is created, not a string object. Yes, it's true that in code it's just a variable myname that creates a string primitive type. However, when a string-related method is called on the variable, even when all string properties are included (including the length and strike method), the variable is treated as a string object instance.

In summary, when an object method is called on a base data type, JavaScript creates an object instance of the base data type, executes the method call, and destroys the temporary object. The same principle applies to data types such as numbers and Booleans.

JavaScript basic properties access to object properties and 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.