Common functions of JS

Source: Internet
Author: User

1. Functions for regular Expressions:

var pattern=/\d{3}-\d{2}-\d{4}/;//here is an object type alert (Pattern.test ("Cscscscs")); alert (typeof pattern);

2. Used to return numbers according to the number of decimal places specified

var num=1.2434343343;var tnum=num.tofixed (1);//parameter displays several decimal alert (typeof Tnum)//converted to a string

3. Used to turn a number into exponential notation:

var num=12434343343;var tnum=num.toexponential (1);//parameter displays several decimal digits of alert (typeof Tnum)//converted to Stringalert (tnum);

4. String concatenation function

/** * This is the concatenation function of the string * @type {string} */var c1= "SCS"; var c2= "Csscs"; var result=c1.concat (C2); alert (result);

Common functions of 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.