JavaScript knowledge Accumulation

Source: Internet
Author: User

1, the principle of event delegation
With event bubbling, the event is bound to the parent element, and the parent element triggers the event when the child element is clicked.

2, JS short-circuit operation
Shorthand for conditional statements
For example: if (a >=6) {
Alert ("Hello");
}
can be simplified into:
A >= 6 && alert ("Hello");

3. Get the last day of a month
New Date (2016,12,0)

4, json.stringify (value)
Value, input object, such as array, class, etc.
Convert an object to a string type
For example:

var student = new Object ();

Student.name = "Lanny";

Student.age = "25";

student.location = "China";

var json = json.stringify (student);

Console.log (student);

Web Front end Learning Communication Group 21 598399936

JavaScript knowledge Accumulation

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.