Search Results

6
votes

What is the accepted way to send 64-bit values over JSON?

This seems to be less a problem with JSON and more a problem with Javascript itself. What are you planning to do with these numbers? If it's just a magic token that you need to pass back to the w …
7
votes

fastest way to detect if a value is in a set of values in Javascript

Use a hash table, and do this: // Initialise the set mySet = {}; // Add to the set mySet["some string value"] = true; ... // Test if a value is in the set: if (testValue in my …