Skip to content

Commit 8052f06

Browse files
committed
chore: bit wise operation
1 parent c48c28f commit 8052f06

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
- [Math.floor](#mathfloor)
7070
- [Math.round](#mathround)
7171
- [JavaScript Integer Max Min](#javascript-integer-max-min)
72+
- [Bitwise operation in JavaScript](#bitwise-operation-in-javascript)
73+
- [x>>y](#xy)
7274
- [Mock Interview](#mock-interview)
7375
- [Get the Average value at each level of the tree](#get-the-average-value-at-each-level-of-the-tree)
7476
- [ADT](#adt)
@@ -855,6 +857,15 @@ It is 16 digit number.
855857
- `Number.MIN_SAFE_INTEGER` = -9007199254740992
856858
- `Number.MAX_SAFE_INTEGER` = 9007199254740991
857859

860+
861+
## Bitwise operation in JavaScript
862+
863+
### x>>y
864+
865+
`x>>y` means `x/2^y` divide x by 2 to the power of y.
866+
867+
868+
858869
## Mock Interview
859870

860871
### Get the Average value at each level of the tree

binary-search-zero-hero.md

Whitespace-only changes.

coding-interview.md

-7
This file was deleted.

0 commit comments

Comments
 (0)