1.1.1 • Published 10 years ago

bin-to-decimal v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 years ago

bin-to-decimal

Build Status

converts binary numbers into decimal (base 10)

var binToDecimal = require('bin-to-decimal');
var dec = binToDecimal('100111100110101'); // 20277

Don't get excited about this. This was an exercise. You should just do.

let bin = 1010101;
let dec = parseInt((bin).toString(), 2); // 85
1.1.1

10 years ago

1.1.0

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago