> ## Documentation Index
> Fetch the complete documentation index at: https://docs.baenninger.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Template Literals

Mit Template-Literals können wir einfach Variablen zu Strings hinzufügen, anstatt mühsam Strings mit Variablen zu verketten.

```javascript theme={null}
const firstName = 'Levin';
const job = 'programmer';
const birthYear = 2007;

const levinNew = `I'm ${firstName}, a ${2023 - birthYear} year old ${job}!`;
```
