We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c693192 commit ef2ab17Copy full SHA for ef2ab17
1-js/02-first-steps/16-javascript-specials/article.md
@@ -148,7 +148,7 @@ Bitwise
148
: Bitwise operators work with integers on bit-level: see the [docs](mdn:/JavaScript/Reference/Operators/Bitwise_Operators) when they are needed.
149
150
Ternary
151
-: The only operator with three parameters: `cond ? resultA : result B`. If `cond` is truthy, returns `resultA`, otherwise `resultB`.
+: The only operator with three parameters: `cond ? resultA : resultB`. If `cond` is truthy, returns `resultA`, otherwise `resultB`.
152
153
Logical operators
154
: Logical AND `&&` and OR `||` perform short-circuit evaluation and then return the value where it stopped.
0 commit comments