Javascript constructor Instance Analysis _javascript skill

Source: Internet
Author: User
/*
* (refer to <javascript core>p151)
* @time 2008-11-25
*/
Copy Code code as follows:

No return value
function Test0 () {
This.name= ' test0 ';
}
var test0=new Test0;
Debugger
alert (test0);//output [Object]
alert (test0.name);//Output Test0
Return a String Object
function Test () {
This.name= ' test ';
return new string (' 123 ');//Returns a String object
}
var test=new test ();
alert (test);//Output 123
alert (test.name);//output undefined, indicating that the object created by the constructor is a string object
Return an original type string
function Test2 () {
This.name= ' test2 ';
Return ' 123 ';//returns a String object
}
var test2=new Test2 ();
alert (test2);//output [Object]
alert (test2.name);//Output Test0

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.