Skip to content

Instantly share code, notes, and snippets.

@nolim1t
Created May 18, 2014 08:58
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Satoshi to BTC or mBTC conversion worksheet
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