Hacker News new | ask | show | jobs
by centixel 1479 days ago
I tend to solve that problem with either:

  <img alt={"Hello, " + place}/>
Or, for more complex interpolation:

  <img alt={`Hello, ${place}`}/>