Skip to content

Instantly share code, notes, and snippets.

@JavaScript-Packer
Created April 30, 2015 23:55
Show Gist options
  • Save JavaScript-Packer/56e2f68838b307b1096d to your computer and use it in GitHub Desktop.
Save JavaScript-Packer/56e2f68838b307b1096d to your computer and use it in GitHub Desktop.
Convert a string of text to Base2 binary (with spacing as delimiter)
var Δ='JavaScript Packer';
function str2bin(Δ, w, o) {
w = [];
for (o in Δ) {
w.push(Δ.charCodeAt(o).toString(2));
}
return w.join(" ");
}
alert(str2bin(Δ));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment