A simple node.js package to convert binary to decimal.
npm install binary-to-decimalbash
npm i binary-to-decimal --save
`
Usage
Convert with just one line of code in maths
- Convert binary numbers into decimal numbers easily with just one code. To get more precise results, in this package I have used Bignumber.js to convert the binary to decimal.
Convert Binary to Decimal:
`python
var binary = require('binary-to-decimal')
console.log(binary.decimal("1010"));
``