bitwiseRightShiftZero
ts
const bitwiseRightShiftZero: OperatorFn;Defined in: operations.ts:518
Applies a zero-fill right shift to the first argument by the second argument.
Remarks
Only the first two arguments are used. Additional arguments are ignored.
Unlike the signed right shift (>>), this operator fills the left side with zeros.
All arguments are converted to numbers before evaluation.
Param
Numeric arguments
Returns
Result of shifting the first argument to the right with zero-fill
Since
1.0.0
Author
Simon Kovtyk