Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyReactembedding expressionsSingle-choice MCQ

What appears on the screen when this component renders?

function Badge() { const count = 0; return ( <div> {count && <span>New</span>} </div> ); }