Skip to content

Instantly share code, notes, and snippets.

@BeKnowDo
Created June 12, 2017 18:38
Show Gist options
  • Save BeKnowDo/15945342fecead85d55dc9a0febc2ffb to your computer and use it in GitHub Desktop.
Save BeKnowDo/15945342fecead85d55dc9a0febc2ffb to your computer and use it in GitHub Desktop.
Binary Gaps
const binaryGaps = (number) => {
let binaryConversion = number.toString(2);
binaryConversion
return binaryConversion;
}
document.querySelector('#test').innerHTML = binaryGaps(14374);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment