Skip to content

Instantly share code, notes, and snippets.

@peledies
Last active January 3, 2016 09:29
Show Gist options
  • Save peledies/8443087 to your computer and use it in GitHub Desktop.
Save peledies/8443087 to your computer and use it in GitHub Desktop.
Convert decimal to Binary
function decbin(dec,length){
var out = [];
while(length--)
out[length] = (dec >> length ) & 1;
return out;
}
console.warn(decbin(8,30));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment