Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Allowed characters ( [A...Z, a....z ], [1...

9] , _ , $ )

Case sensitive, ex: Mohamed ≠ mohamed

Do not use accents

name of the variable Do not use spaces

Programming Variables Types of variables String Free text, ex: "Hello world ..."
course - SSTech
Number Numbers, ex: 1, 2 .... 99...9

Boolean logic, ex: True or False


Value
...etc

Declaration syntax let nameOfVariable : TypeOfVariable ;

let nameVariable1, nameVariable2, nameVariableN : TypeOfVariables ;

Assignment syntax nameOfVariable = value ;

+ Addition

Operators Arithmetic Operators - Subtraction

* Multiplication

/ Division

Modulus, Divides two numbers and returns the


%
remainder

-- Increment number

++ Decrement number

You might also like