Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit fe78701

Browse files
authoredMay 7, 2020
fixing a typo on line 431
added changes from 'numebers' to 'numbers' on line 431
1 parent c799f28 commit fe78701

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
@@ -428,7 +428,7 @@ The list of operators:
428428
- RIGHT SHIFT ( `>>` )
429429
- ZERO-FILL RIGHT SHIFT ( `>>>` )
430430
431-
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.
431+
These operators are used very rarely, when we need to fiddle with numbers 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.
432432

433433
## Comma
434434

0 commit comments

Comments
 (0)
Please sign in to comment.