Skip to content

Instantly share code, notes, and snippets.

@zlargon
Created November 27, 2014 08:45
Show Gist options
  • Save zlargon/177484546bd23b2fd55a to your computer and use it in GitHub Desktop.
Save zlargon/177484546bd23b2fd55a to your computer and use it in GitHub Desktop.
convert byte (integer) array to string
function byteArrayToString(arr) {
var s = "";
arr.forEach(function(i) {
s += String.fromCharCode(i);
});
return s;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment