📜  >> js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:54.708000             🧑  作者: Mango

代码示例6
The right shift operator (>>) shifts the first operand the specified number 
of bits to the right. Excess bits shifted off to the right are discarded. 
Copies of the leftmost bit are shifted in from the left. Since the new 
leftmost bit has the same value as the previous leftmost bit, the sign bit 
(the leftmost bit) does not change. Hence the name "sign-propagating".