What are Variables?

This lesson informs about what variables are and the acceptable variables names.

We'll cover the following...

Introduction

A variable in any programming language is a named piece of computer memory, containing some information inside.

Think of a variable as a box with a name, where we can “store” something.

We create, edit and delete variables, as ...