Lines Matching refs:expression

160 …ist of zero or more expressions enclosed in square brackets ([]). Each expression represents an el…
178 A constant expression can be used to explicitly set the value of an `enum` constant.
330 … statement is used to execute a sequence of statements that match the value of a switch expression.
335 switch (expression) {
352 If the value of a `switch` expression equals the value of some label, then the corresponding statem…
362 The conditional expression `? :` uses the `boolean` value of the first expression to decide which o…
364 A conditional expression looks as follows:
370expression is truthy(a value that is considered `true`), then the first expression is used as the …
393 1. An `init` expression is executed, if any. This expression usually initializes one or more loop c…
394 …on is truthy(a value that is considered `true`), or if the conditional expression is omitted, then…
396 4. If there is an `update` expression, then the `update` expression is executed.
415 for (forVar of expression) {
613 Another form contains an expression that specifies a default value.
713 An expression can be specified as an arrow function to make the notation shorter, i.e., the followi…
1236 …teral is an expression that can be used to create a class instance and provide some initial values…
1612 …nary operator `??` checks whether the evaluation of the left-hand-side expression is equal to `nul…
1613 …it is, then the result of the expression is the right-hand-side expression; otherwise, it is the l…
1631 Optional chaining operator `?.` allows writing code where the evaluation stops at an expression tha…
1747 The **import() **syntax, commonly called dynamic import, is a function-like expression that allows …
1748 …that resolves into a module object that contains all its exports. This expression can be called fr…
1827 The keyword `this` used as a primary expression denotes a value that is a reference to the followin…