Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Not exactly... within JSX the handlebars signify "now I'm going back to plain JS".

compare

    <div>
        console.log(123)
    </div>
with

    <div>
        { console.log(123) }
    </div>
The first outputs a div with the text "console.log(123)" inside. The second logs "123" and outputs an empty div (since console.log returns undefined).


That's the point.




Consider applying for YC's Summer 2026 batch! Applications are open till May 4

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: