Created
June 24, 2022 02:12
-
-
Save caglarorhan/428bbc253dd3b43461750e0f56ee62ad to your computer and use it in GitHub Desktop.
Convert binary to decimal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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