We had covered some ground and some are still unsure about what the blocks do and mean. So in the next few days we will be looking at some of these and what they do. We will start with the Orange blocks at the top. These are variable blocks. TYPES OF VARIABLES Think of variables as place holders and these variables can be used to temporarily hold numerous values. There are four types of variables: 1. Boolean 2. Number Variable 3. String variable 4. Map variable We'll cover Boolean Variables later. Today we'll cover Number, string and map variables. BOOLEAN VARIABLES A boolean is a data type that has only two possible values. For example a user's can be logged in or logged out. So the value of that boolean can only either be true or false. In the image above I have created a boolean variable called isRunning. I can use this to determine when the app is running by setting the value to true when the app starts(onStart). then I can also specify what happens when the app is ru...