Skip to content

Instantly share code, notes, and snippets.

@0rbianta
Created January 14, 2021 06:56
Show Gist options
  • Save 0rbianta/49c1f7794023f7ff35ec059c63c739bf to your computer and use it in GitHub Desktop.
Save 0rbianta/49c1f7794023f7ff35ec059c63c739bf to your computer and use it in GitHub Desktop.
String2Bin with NodeJS
const data = "Hello World";
var bins = [];
for(var i=0;i<data.length;i++){
bins.push(data.charCodeAt(i).toString(2));
}
console.log(bins);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment