Million Billion Trillion

From Chorke Wiki
Revision as of 08:50, 12 January 2018 by Shahed (talk | contribs) (Created page with "<syntaxhighlight lang="javascript"> var Million, Billion, Trillion; Million = Math.pow(10,6) //Billion = Math.pow(10,9) //Billion = Math.pow(10,6) x Math.pow(10,3) Billi...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
var Million, Billion, Trillion;

Million    = Math.pow(10,6)
//Billion  = Math.pow(10,9)
//Billion  = Math.pow(10,6) x Math.pow(10,3)
Billion    = Million x Math.pow(10,3)

//Trillion = Math.pow(10,12)
//Trillion = Math.pow(10,6) x Math.pow(10,6)
//Trillion = Million x Million

//Trillion = Math.pow(10,9) x Math.pow(10,3)
Trillion   = Billion x Math.pow(10,3)