Microsoft® JScript >> Operator |
| Language Reference | |
Used to shift the bits of an expression to the right, maintaining sign.
result = expression1 >> expression2The >> operator syntax has these parts:
Part Description result Any variable. expression1 Any expression. expression2 Any expression.
The >> operator will shift the bits of expression1 right by the number of bits specified in expression2. The sign bit of expression1 is used to fill the digits from the left. Digits shifted off the right are discarded. For example, after the following:
var temp temp = -14 >> 2temp will have a value of -4 as 14 (11110010 in binary) shifted right two bits equals -4 (11111100 in binary).
As for all arithmetic operators, JScript will generate runtime errors for every case in the table below where an E is indicated:
obj as ns num bool undef null obj N E N N N E E as E E E E E E E ns N E N N N E E num N E N N N E E bool N E N N N E E undef E E E E E E E null E E E E E E E obj = Object, as = Alphanumeric String, ns = Numeric String, num = Number, bool = Boolean, undef = Undefined, null = Null value.
file: /Techref/language/asp/js/180.htm, 3KB, , updated: 1996/11/22 10:11, local time: 2024/11/5 20:40,
3.139.234.48:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/language/asp/js/180.htm"> Microsoft® JScript Language Reference </A> |
Did you find what you needed? |