What is the JavaScript >>> operator and how do you use it?

Posted by Ken on Stack Overflow See other posts from Stack Overflow or by Ken
Published on 2009-11-30T20:59:01Z Indexed on 2010/04/07 1:23 UTC
Read the original article Hit count: 441

Filed under:
|
|

I was looking at code from Mozilla that add a filter method to Array and it had a line of code that confused me.

var len = this.length >>> 0;

I have never seen >>> used in JavaScript before.
What is it and what does it do?

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about operators