Variables
In every major programming language, the concept of variables is a universal one. In short, variables allow programmers to store values such as numbers and texts so that the values can be referenced and used by the rest of the application. Variables are often declared by a variable type and depending on the language can be immutable (value cannot be changed) using keywords like 'const' in JavaScript or 'val' in Kotlin.