Javascript fence-type conditional judgment

Source: Internet
Author: User

Null has no property value and cannot get its entity (existence) value. So Null.property returns an error instead of a undefined.

Consider the following code

if (Node.nextSibling.className = = ...) {
...
}
If node or node.nextsibling is empty (null), an error is returned. Therefore, the code for the typical solution is

if ((node) && (next = node.nextsibling) && ...) {
...
}
Then, when the condition is judged a lot, the code will form the following situation

if (
(node) &&
(node.nextsibling) &&
(Node.nextSibling.className = = ...)
... ) {
...
}
As the judging conditions increase, the code becomes very "ugly".

There is a small "trick" that can simplify conditional judgment expressions. We can add an empty object ({}) or 0 (0) as an alternative

if (Next = (node | | 0). nextSibling)) {
...
}
Well, the code above can be written like this.

if ((node | | 0). nextSibling | | 0). ClassName = = ...) {
...
}

Javascript Fence-Conditional judgment

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.