Hello Folks π
What's up friends, this is SnowBit here. I am a passionate self-taught young developer having the intention to become a successful developer.
Today, I am here with an amazing topic about numbers π―
So let's get started π,
Do you think it is a good idea to write lots of zeros for a billion or trillion?
const billion = 1000000000
const trillion = 1000000000000
And the answer is a big NO! this way is only efficient for hundreds and thousands not for the big number like this. You can write like this but in the end, it becomes tedious and hard to read.
So, I have a proper solution for it and you will be amazed
const billion = 1e9
console.log("Billion " + billion)
const trillion = 1e12
console.log("Trillion " + trillion)
Copy this code and try once!
Thank you for reading, have a nice day!
Your appreciation is my motivation π
- Follow me on Twitter - @codewithsnowbit
- Subscribe me on YouTube - Code With SnowBit
Top comments (0)