The string data type in JS

Source: Internet
Author: User

string contains some special character literal, also called escape sequence, \ n meaning is newline, \ t meaning for the tabulation, \b meaning space, \ r Enter, \ \ Slash.

The string in 1.ECMAScript is immutable.

2. Method of Converting a string: ToString () returns the string pattern of the corresponding value. Null and undefined no this method, others have.

3. If you do not know if the value to be converted is null or undefined, you can use the Transform function string (), which converts any value to a string.

var value1=null;

var value2=undefined;

Alert (String (value1)); "NULL"

Alert (String (value2)); "Undefined"

The string data type in JS

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.