Level 23
Level 25
26 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
var a = b + c;
addition
var a = b * c;
multiplication
var a = b - c;
substraction
var a = b / c;
division
var a = b % c;
modulus (division remainder)
i++;
increments (adds Name)
i--;
decrement (substracts Name)
var x = initialValue; x += valueAdded;
adds a value to a variable
var x = initialValue; x -= valueSubstracted;
substracts a value from a variable
var x = initialValue; x *= multiplicator;
multiplies a variable by a value
var x = initialValue; x /= divisor;
divides a variable by a value
var x = initialValue; x %= divisor;
returns the remainder of the division of a variable by a divisor
var contatenatedString = string1 + string2;
concatenation of 2 strings
calledFunction();
call a function
!(x = = y)
Logical not
variable ** exponent
exponentiation
a < b
less than
a <= b
less than or equal
a > b
greater than
a >= b
greater than or equal
a == b
equal
a === b
strict equal (value and type)
a != b
unequal
a !== b
strict unequal (value and type)
a && b
And
a || b
Or