---
title: Declare String Variables
---
# Declare String Variables
---
## Hints
### Hint 1
In JavaScript, variables are dynamic. That means they can hold numbers, strings, or any other data type at a given time. To declare a string, simply initialize (create) a variable:
```javascript
var a;
```
Then, using single or double quotation marks, declare the string:
```javascript
a = "Hello Camper!";
```