I came across this in some AS 3.0 code:
(duration >> 0)
Where duration is a Number
. I think I know what a bitwise right shift does, but what's the point of shifting 0 bits? This happens a few times in the code, I'd like to understand what it does.