In JavaScript, for a given property containing a Number value, is it possible to retrieve the actual binary value - the 64 bits representing the value.
var x = 13;
What 64 bits are stored in the memory location that x points to?
I know that there are IEEE 754 converters out there. But is it possible to retrieve the actual live binary value from the memory cell? BTW, I don't need this for any application, I'm just curious...