when i execute this
JSON.parse(ArrayBuffer);
I have this Error :
SyntaxError: Unexpected token in JSON at position 0
Thanks for you response
when i execute this
JSON.parse(ArrayBuffer);
I have this Error :
SyntaxError: Unexpected token in JSON at position 0
Thanks for you response
Is your question why the error is occurring? This error occurs when we pass an "undefined" value to the JSON.parse method. ArrayBuffer is a binary data type. JSON.parse expects a JSON object to work properly.