Search Results

0
votes

How do I get the value of a JSObject property from C?

JS_GetProperty() …
33
votes

Hidden Features of JavaScript?

Here are some interesting things: Comparing NaN with anything (even NaN) is always false. Array.sort can take a comparator function and is usually called by a quicksort-like …
1
vote

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

Javascript's Number type (64 bit IEEE 754) only has about 53 bits of precision. But, if you don't need to do any addition or multiplication, then you could keep 64-bit value as 4-character …