Skip to content

Commit 9a90dc1

Browse files
Fix typo
Missing an 'a' from this sentence.
1 parent 9e3fa13 commit 9a90dc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/02-first-steps/08-operators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ alert( c ); // 4
266266

267267
Chained assignments evaluate from right to left. First, the rightmost expression `2 + 2` is evaluated and then assigned to the variables on the left: `c`, `b` and `a`. At the end, all the variables share a single value.
268268

269-
Once again, for the purposes of readability it's better to split such code into few lines:
269+
Once again, for the purposes of readability it's better to split such code into a few lines:
270270
271271
```js
272272
c = 2 + 2;

0 commit comments

Comments
 (0)