> For the complete documentation index, see [llms.txt](https://hopemoore.gitbook.io/coding-for-creatives-spring-2021/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hopemoore.gitbook.io/coding-for-creatives-spring-2021/glossary-and-terms/variables.md).

# Variables

Variables are pieces of reusable information

They have **names** and **values**. The variable is the placeholder for its value.

You can...

[...declare or create a variable](/coding-for-creatives-spring-2021/glossary-and-terms/variables/declaring-variables.md)

[...assign a variable a value](/coding-for-creatives-spring-2021/glossary-and-terms/variables/assigning-a-variable.md)

[...use a variable](/coding-for-creatives-spring-2021/glossary-and-terms/variables/using-a-variable.md)

[...create and use variables with different data types](/coding-for-creatives-spring-2021/glossary-and-terms/variables/data-types.md)

[...cast or change one data type into another data type](/coding-for-creatives-spring-2021/glossary-and-terms/variables/casting-a-variable.md)
