Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. (function() {
  2.  
  3. //1000000000000000
  4. const a = 999999999999999.99
  5.  
  6. //99999999999999.98
  7. const b = 99999999999999.99
  8.  
  9. //999999999999999
  10. const c = 999999999999999
  11.  
  12. //'999999999999999.99'
  13. const d = '999999999999999.99'
  14.  
  15. console.log(a);
  16. console.log(b);
  17. console.log(c);
  18. console.log(d);
  19. }
  20. )();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement