Javascript tips (updating ...)

Source: Internet
Author: User
1. determine the type of an object
 
If (typeof o = "object") & (O. constructor = Date) // then do something with the date object... if (typeof o = "object") & (O instanceof date) // then do something with the date object...

Table: Type-checking Variables
variable typeof variable variable. constructor
{An: "object"} Object Object
["an", "array"] Object array
function () {} function function
"a string" string string
55 Number Number
true Boolean Boolean
new user () Object User

2. string connection in Javascript
as we all know, in C #, stringbuilder is more efficient than string. concat efficiency is several orders of magnitude higher
For details, refer to: string. concat versus text. stringbuilder
the same problem exists in Javascript. A small test was conducted to check the connection efficiency of various browsers.
which browser is faster:
we can see that all JS string connection operations are optimized in browsers except IE. So when doing a lot of string connection operations in IE, you should consider performance issues.

Related Article

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.