Skip to content

Instantly share code, notes, and snippets.

@guilhermehn
Created April 10, 2014 19:56
Show Gist options
  • Save guilhermehn/10417176 to your computer and use it in GitHub Desktop.
Save guilhermehn/10417176 to your computer and use it in GitHub Desktop.
Binary to Decimal
function binToDecimal (n) {
var i = s = 0, h
while (h = n[i]) {
s += (1 << n.length - ++i) * h
}
return s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment