typeof () is a variable of type object in JavaScript to add properties

Source: Internet
Author: User


Code 01:int

var a = 10;a.name = "HelloWorld"; alert (a.name);

Output

Undefined


Code 02:string

var a = "abc"; a.name = "HelloWorld"; alert (a.name);

Output

Undefined


Code 03:string

var a = new String (); a.name = "HelloWorld"; alert (a.name);

Or

var a = new String ("abc"); a.name = "HelloWorld"; alert (a.name);

Output

HelloWorld


Code 04:object

var a = {};a.name = "HelloWorld"; alert (a.name);

Or

var a = new Object (); a.name = "HelloWorld"; alert (a.name);

Output

HelloWorld


From these sets of code, some output is undefined, and some output is HelloWorld, which is related to the data type stored in a.


The result of typeof (10) is number

The result of typeof ("ABC") is String

The result of typeof ("ABC") is an object

The result of typeof (New Object ()) is an object


The summary of these pieces of code is that only typeof () gets a variable of type object to add the custom property .







typeof () is a variable of type object in JavaScript to add properties

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.