fixing a typo on line 431

added changes from 'numebers' to 'numbers' on line 431
This commit is contained in:
Vinit Raut 2020-05-08 02:22:29 +05:30 committed by GitHub
parent c799f28d2e
commit fe78701dcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -428,7 +428,7 @@ The list of operators:
- RIGHT SHIFT ( `>>` ) - RIGHT SHIFT ( `>>` )
- ZERO-FILL RIGHT SHIFT ( `>>>` ) - ZERO-FILL RIGHT SHIFT ( `>>>` )
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. 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.
## Comma ## Comma