> For the complete documentation index, see [llms.txt](https://april.gitbook.io/learning-js/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://april.gitbook.io/learning-js/chapter-3./3.8/3.8.1.md).

# 3.8.1 템플릿 문자열

* 문자열의 정해진 위치에 값을 채워 넣는 방법
* 백틱을 사용해서 표현
* 달러 기호 다음에 중괄호로 감싼 값을 쓰면 그 값이 문자열에 삽입됨

```javascript
let currentTemp = 19.5
const message = `The current temperature is ${currentTemp}\u00b0C';
```
