How can i print the values of [object ArrayBuffer] and [object Uint8Array] .
I have a variable which i on printing gives me the above objects but i am not able to retrieve their values.
encryptedBytes = toSupportedArray(e.target.result);
where ,
console.log("to send for encryption - e.target.result : "+e.target.result);
gives me the result :
to send for encryption - e.target.result : [object ArrayBuffer]
and
console.log("encryptedBytes : "+encryptedBytes);
gives me the result :
encryptedBytes : [object Uint8Array]
but how can i retrieve the values of the same.