Skip to content

Commit b76f5c7

Browse files
authored
Merge pull request #3347 from scottwright-dev/patch-1
Fix typo
2 parents c0904ea + 9a90dc1 commit b76f5c7

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)