Skip to content

Instantly share code, notes, and snippets.

@notnotype
Created July 27, 2021 10:09
Show Gist options
  • Save notnotype/015ade1f310efaef8fd5654ebcd05e51 to your computer and use it in GitHub Desktop.
Save notnotype/015ade1f310efaef8fd5654ebcd05e51 to your computer and use it in GitHub Desktop.
[JavaScript toHexString] #JavaScript
function toHexString(bytes) {
return bytes.map(function(byte) {
return (byte & 0xFF).toString(16)
}).join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment