Skip to content

Commit 175aefa

Browse files
committed
minor fixes
1 parent 3a3086b commit 175aefa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ The list of operators:
368368
- RIGHT SHIFT ( `>>` )
369369
- ZERO-FILL RIGHT SHIFT ( `>>>` )
370370
371-
These operators are used very rarely. To understand them, we need to delve into low-level number representation and it would not be optimal to do that right now, especially since we won't need them any time soon. If you're curious, you can read the [Bitwise Operators](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators) article on MDN. It would be more practical to do that when a real need arises.
371+
These operators are used very rarely, when we need to fiddle with numebers on the very lowest (bitwise) level. We won't need these operators any time soon, as web development has little use of them, but in some special areas, such as cryptography, they are useful. You can read the [Bitwise Operators](https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Operators/Bitwise_Operators) article on MDN when a need arises.
372372

373373
## Modify-in-place
374374

0 commit comments

Comments
 (0)