Skip to content

Instantly share code, notes, and snippets.

@Floofies
Last active December 5, 2018 20:42
Show Gist options
  • Save Floofies/1c459397a6180e842ac54874300d5957 to your computer and use it in GitHub Desktop.
Save Floofies/1c459397a6180e842ac54874300d5957 to your computer and use it in GitHub Desktop.
Generates binary expansion integers in order
function* binaryExpansionGenerator(int = 1, roof = 2048) {
while (roof > int) {
int = int * 2;
yield int;
}
};
console.log(Array.from(binaryExpansionGenerator()));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment