Skip to content

Instantly share code, notes, and snippets.

@Colorfulstan
Created March 25, 2016 11:27
Show Gist options
  • Save Colorfulstan/a0c88c696f074154b2d2 to your computer and use it in GitHub Desktop.
Save Colorfulstan/a0c88c696f074154b2d2 to your computer and use it in GitHub Desktop.
strange javascript operators from npm repeat-string >>= and &
//while (max > res.length && num > 0) {
if (num & 1) { // 1 if num is odd
// res += str;
}
num >>= 1; // halfs num to an integer (rounded down)
// if (!num) break;
// str += str;
//{
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment