# Variables

## What is a Variable?

In app creation, variables work like containers to hold numbers, phrases, the results of a calculation, a database call, or other important values in the app, in the mobile device itself or in the cloud.

Instead of repeating these values in multiple places, a variable can be used wherever it is needed in your Blocks code.

## `App`, `stored` and `cloud` variables

![](/files/-LOZaSB8Wi4G3ZDLXfaC)

When you create a variable, you'll have the choice between an app, stored and cloud variable. All variable types work across screens and the only difference is where they are stored.

### App Variables

{% embed url="<https://youtu.be/Ito6O4kqUUU>" %}

An **app** variable works across screens and is stored in the app itself. \
You can save any data type as an app variable.

### Stored Variables

{% embed url="<https://youtu.be/Dz-e7T8k1X4>" %}

A **stored** variable also works across screens but is saved to the mobile device itself. This means that a stored variable can be retrieved from a previous session. A stored variable is similar to saving a value to [Local Storage](/snap-to-place/local-storage.md) and is especially useful for retrieving a user's previous setting. If you use stored variables, you no longer need to add Local Storage to your app.

You can save any data type as a stored variable.

### Cloud Variables

{% embed url="<https://youtu.be/DYo2h5TXG6U>" %}

{% embed url="<https://youtu.be/r2AGHfpLfDM>" %}

A **cloud** variable also works across screens but is saved to the cloud powered by Firebase. \
\
By default, the cloud variable is saved to the Thunkable default Firebase database. We recommend saving them to your own private Firebase DB by [connecting a private Firebase DB to your app](/snap-to-place/realtime-db.md#set-up-your-own-firebase-account).&#x20;

Cloud variables can be used similar to saving and retrieving values to a [Realtime DB](/snap-to-place/realtime-db.md) powered by Firebase and can be used in a number of applications that share data across users in the cloud. If you use cloud variables, you no longer need to add a Realtime DB to your app.

#### Cloud Variables and Data

You can only save a piece of [text](/snap-to-place/text.md) or an [object](/snap-to-place/objects.md) as a cloud variable.

To save a list as a cloud variable, use the 'make text from list' block to convert the list to a piece of text.

![](/files/-MXl-2ZaRb7sYiDCBNe8)

\
When you retrieve this text from your cloud variable, you can convert it to a list with the 'make list from text' block to work with it as a list in your app.

![](/files/-MXl-8DbwoSVwUTcJ53y)

To save media as a cloud variable, use the [Cloudinary Media DB](/snap-to-place/media-db.md) component to upload your audio to the cloud and get a URL that points to it. You can save this URL as a cloud variable.

## Initialize a Variable When the App Starts

![](/files/-LOZplyIbNnORT3MWyuh)

To create a variable when the app starts, you can grab the block above, select your variable `scope` (app, stored, cloud) and give the variable a `name` like hello. You'll have to connect a block to give app variables an initial value (in the picture above). We recommend placing these blocks in the initial app screen.

## Set a variable during an app event

![](/files/-MXkyVl_UNhfASzmWQYm)

You can also set a variable within a block event like the one above. Simply grab the set variable block and connect it to the value that you want it to be set to.

## Retrieving a variable

![](/files/-MXkykxI7MR0HOuKpDLm)

Once you have stored a value to your variable, you can retrieve it any time using a block like the one above.

## Updating when the variable initializes or changes

![](/files/-LU4K3vctJ_NOr-eJusM)

Once you have created your variable, you can set it to update when the variable updates in your app.&#x20;

With Cloud variables, this block will also be triggered when the value of the Cloud variable is changed in your Firebase DB. This block replaces the Add.Listener and DataChanged blocks in the Realtime DB.

## Changing a variable

![](/files/-MXkzfMoA5BUgd8kb0er)

Variables do not have to be fixed values and there may be times when you want to change your variable automatically like incrementing it by 1 after an event. To do so, grab a block like the one above.

## Dynamically named variables

The above blocks use hard coded variable names, where you must select a variable from a list of variables that you have initialized.

You can also create **dynamically named** variables. There are variables that you create and name during app runtime, which do not have an initialize block.

You can name these by typing in a name, or by using other variables to name the dynamically created variables.

![](/files/-MYxceqYcxKvKWSoQIOm)

You can create dynamically named app, stored or cloud variables.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.thunkable.com/snap-to-place/variables.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
