콘텐츠 인터폴레이션
콘텐츠 보간법
문자 값 (template literal 활용)
<h1>{`${headline}(${abbrs.jsx})`}</h1>숫자 값
<span>{number % 4}</span>함수 (또는 메서드) 결과 값
<p>{formatCount()}</p>Last updated
콘텐츠 보간법
<h1>{`${headline}(${abbrs.jsx})`}</h1><span>{number % 4}</span><p>{formatCount()}</p>Last updated