Currently, I am receiving an arrayBuffer from a WebSocket connection and within that, I am able to obtain a range of byte arrays representing a Guid created in C#.
I am wondering how I can convert these Guid bytes to a string in JavaScript?
Guid: "FEF38A56-67A9-46DF-B7D8-C52191CD70F4"
Bytes: [86, 138, 243, 254, 169, 103, 223, 70, 183, 216, 197, 33, 145, 205, 112, 244]
Any assistance on this matter would be greatly appreciated. Thank you.