JavaScript - Variable use

Using variables, you can access the data stored in a variable, can be used to store or retrieve the value.

variable use

Description

name
Data:
  • name -

Output

Examples

JavaScript

Variable use the possible of use:
x = 64 / 8;   // x=8
y = x / 0.5;   // y=16
z = (x * 2 / y +5);// z=1.1

JavaScript

a && b
a || true
!a

JavaScript

Other pieces of example codes:
++i;
i & j
z = 5
z = (x % y) %5
y > 32
a4 = true && true

You can find it in the following collections: value receiver | value sender
Languages: en hu cz sk