This is what I want:
>> var uint n = 0;
<- undefined (output by firefox dev console, I don't know what this means)
>> n;
<- 0;
>> n - 1;
<- 4294967295 (2^32-1)
So how to declare a variable, in javascript, so that it is unsigned? Thanks in advance.