Skip to content

Instantly share code, notes, and snippets.

@srkama
Created March 14, 2016 04:46
Show Gist options
  • Save srkama/5666eb46aa47cacd029b to your computer and use it in GitHub Desktop.
Save srkama/5666eb46aa47cacd029b to your computer and use it in GitHub Desktop.
binary to string.
function binaryAgent(str) {
actualStr=""
str.split(" ").map(function(val) {
actualStr += String.fromCharCode(parseInt(val,2));
})
return actualStr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment