NOTE: I need to do bitwise masking on the 64 bit integer.
I am converting some c# to javascript.
Within it is a ulong; a unsigned 64 bit c# integer.
The 64 bit integer is in a text based ascii file, which needs to be loaded into the javascript and processed. (I know how to load the file, I just need to be able for javascript to unserstand and be able to operate on these 64 bit integers without any loss.)
So how can I (accurately) store and work on this unsigned 64 bit integer in javascript?
Notes: I know javascript has no concept of ints, longs etc. But I am converting from c# where there is a 64 bit integer in a text file I load, and I need javascript to understand and be able to work on it without loss. (Ie, javascript only goes up to 53 bits with preceision, as far as I am aware.)