Satoshi to BTC or mBTC conversion worksheet
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
var btcConst = 100000000; | |
var mbtcConst = 100000; | |
var v = 100000; // Satoshi Received | |
var mbtc = v / mbtcConst; | |
var btc = v / btcConst; | |
console.log(mbtc.toString()); | |
console.log(btc.toString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment