--- title: Use && for a More Concise Conditional --- # Use && for a More Concise Conditional --- ## Problem Explanation The example given is ```jsx {condition &&
markup
} ``` which is demonstrated below using the condition of the this.state.dinnerCooked boolean. If the boolean is true the markup included in the {} with the condition will display, if not it will not display ```jsx class MyComponent extends React.Component { constructor(props) { super(props); this.state = { dinnerCooked: true } } render() { return (