JavaScript - Expression statement: ;
Expression statement is evaluating the expression, then make an evaluation and program execution continues with the next statement.;
Description
expression ;
Input
- expression -
Examples
JavaScript
j = 3;
ret = j<i;
x = 10 * 5 -j;
JavaScript
Other pieces of example codes:z = (x * 2 / y +5);
a2 = false || true;
b = x <= 12;
z = (x / 5) * 10;
y = x / 0xa;
z = x ^ 123;
Expression statement in another programming language: