JavaScript's "True/false && expression" logical expression

Source: Internet
Author: User

True/false && Expression

In the course of learning react, we encountered one of the following methods:

function Mailbox (props) {  const unreadmessages = props.unreadmessages;  Return (    <div>      

In this method, the number of unread messages Unreadmessages is defined

And then return a piece of code that reminds you how many unread messages you have.

The Core code:

0 &&    {unreadmessages.length} unread messages. 

&& the expression on the left determines whether the number of messages is greater than 0, and how many unread messages are in the right-hand expression rendering;

This is possible because in JavaScripttrue && expressionAlways return expressionfalse && expressionAlways returns FALSE. If the condition is true,&& the right side of the element will be rendered if false,react ignores and skips it.

JavaScript's "True/false && expression" logical expression

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.