typed-objects-explainer
typed-objects-explainer copied to clipboard
int8 example is potentially wrong
In this example:
int8(128) // returns 127
int8("128") // returns 127
Shouldn't it be -127 instead as per conversion rules of C, Int8Array and many others?