Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript include too large or too small numbers

const a1 = 5e9;
console.log(a1); //5000000000

const a2 = 5e-5;
console.log(a2); // 0.00005
 
PREVIOUS NEXT
Tagged: #javascript #include #large #small #numbers
ADD COMMENT
Topic
Name
9+1 =