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.
2 parents e3b35f8 + d6dd01e commit 3b2b4fcCopy full SHA for 3b2b4fc
1-js/02-first-steps/07-operators/article.md
@@ -266,7 +266,7 @@ Operators `++` and `--` can be placed both after and before the variable.
266
- When the operator goes after the variable, it is called a "postfix form": `counter++`.
267
- The "prefix form" is when the operator stands before the variable: `++counter`.
268
269
-Both of these records do the same: increase `i` by `1`.
+Both of these records do the same: increase `counter` by `1`.
270
271
Is there any difference? Yes, but we can only see it if we use the returned value of `++/--`.
272
0 commit comments