Skip to content

Commit 0a66266

Browse files
author
James Allardice
committed
Added missing operator to list
1 parent 533cb74 commit 0a66266

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

option-articles/bitwise-jshint.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
The JSHint `bitwise` option is used to disallow the usage of any bitwise
2020
operators. In JavaScript the available bitwise operators are `<<` (bitwise left
2121
shift), `>>` (bitwise right shift), `>>>` (unsigned bitwise right shift), `&`
22-
(bitwise AND), `|` (bitwise OR) and `^` (bitwise XOR). In the following example
23-
we are using the bitwise OR operator to round a number down to the closest
24-
integer which is a relatively common shorthand trick:
22+
(bitwise AND), `|` (bitwise OR), `^` (bitwise XOR) and `~` (bitwise NOT). In the
23+
following example we are using the bitwise OR operator to round a number down to
24+
the closest integer which is a relatively common shorthand trick:
2525

2626
<!---
2727
{

0 commit comments

Comments
 (0)