Path: blob/main/files/en-us/web/javascript/reference/statements/expression_statement/index.md
6529 views
------{{jsSidebar("Statements")}}
An expression statement is an expression used in a place where a statement is expected. The expression is evaluated and its result is discarded — therefore, it makes sense only for expressions that have side effects, such as executing a function or updating a variable.
Syntax
expression: An arbitrary expression to be evaluated. There are certain expressions that may be ambiguous with other statements and are thus forbidden.
Description
Apart from the dedicated statement syntaxes, you can also use almost any expression as a statement on its own. The expression statement syntax requires a semicolon at the end, but the automatic semicolon insertion process may insert one for you if the lack of a semicolon results in invalid syntax.
Because the expression is evaluated and then discarded, the result of the expression is not available. Therefore, the expression must have some side effect for it to be useful. Expression statements are commonly:
Function calls (
console.log("Hello");,[1, 2, 3].forEach((i) => console.log(i));)Assignment expressions, including compound assignments
Others may also have side effects if they invoke getters or trigger type coercions.
Forbidden expressions
In order for an expression to be used as a statement, it must not be ambiguous with other statement syntaxes. Therefore, the expression must not start with any of the following tokens:
function: which would be afunctiondeclaration orfunction*declaration, not afunctionexpression orfunction*expressionasync function: which would be anasync functiondeclaration orasync function*declaration, not anasync functionexpression orasync function*expressionclass: which would be aclassdeclaration, not aclassexpressionlet[: which would be aletdeclaration with array destructuring, not a property accessor on a variable calledlet(letcan only be an identifier in non-strict mode){: which would be a block statement, not an object literal
Therefore, all of the following are invalid:
More dangerously, sometimes the code happens to be valid syntax, but is not what you intend.
To avoid these problems, you can use parentheses, so that the statement is unambiguously an expression statement.
Examples
Avoiding control flow statements
You can avoid almost all use of control flow statements using expression statements. For example, if...else can be replaced with ternary operators and logical operators. Iterative statements like for or for...of can be replaced with array methods.
Warning: This only demonstrates a capability of the language. Excessive use of expression statements as a substitute for control-flow statements can make code much less readable.
Specifications
{{Specifications}}