Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created June 24, 2022 02:12
Show Gist options
  • Save caglarorhan/428bbc253dd3b43461750e0f56ee62ad to your computer and use it in GitHub Desktop.
Save caglarorhan/428bbc253dd3b43461750e0f56ee62ad to your computer and use it in GitHub Desktop.
Convert binary to decimal
function bin2dec(bin){
bin=bin.toString();
let binArr = bin.split('');
binArr = binArr.reverse();
let dec = 0;
binArr.forEach((count,index)=>{
dec+=count*Math.pow(2,index);
})
return dec;
}
console.log(bin2dec(10011011));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment