JS using short-circuit principle shorthand if statement

Source: Internet
Author: User

Look at the source code of Googledoodle-dance, learn a little knowledge-shorthand if statement.

In almost all languages | | and && Follow the principle of "short circuit", such as the first expression in && is false to not handle the second expression, and | | Just the opposite.

JS also follows the above principles. All:

A && B: Converts A, B to Boolean, then logical with, True returns B, False returns a
A | | B: Converts A, B to Boolean, then logical OR, True returns a, FALSE returns B

So the IF statement is similar to this:

if (2>1) {

A=1;

}

We can simply write:

2>1&& (a=1)

Original: http://jayuh.com/js-short-circuit/

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.