Node.js examples for String:Convert
Convert bytes To ASCII String
function bytesToASCIIString(bytes){ return String.fromCharCode.apply(null, new Uint8Array(bytes)); }