In javascript we can't able to evaluate larger than 32 bits in the bitwise operation. But In c# we can able to do this.
Here is the example If we try to run the below one browser console
4294967296 & 8589934591
Its returns 0 But in C# its returns the 4294967296
I googled and I have found that we can able to use this one goog.math.Long to implement larger than 32 bitwise implementation.
But my problem is, I am not able to find the sample to implement the logic in client side.
Can any one help me on this.
Thanks in advance