In Chapter 1 you typed "JavaScript is awesome!" directly in console.log. What if you need that value in ten places?
const creates a named container. Write it once, use it everywhere:
```js
const language = "JavaScript";
console.log(language);
`
Run this. Then look at the two console.log calls — they both use the same variable.