Skip to content

Instantly share code, notes, and snippets.

@nolim1t
Created May 18, 2014 08:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nolim1t/eb84d08b542ac5183d19 to your computer and use it in GitHub Desktop.
Save nolim1t/eb84d08b542ac5183d19 to your computer and use it in GitHub Desktop.
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