Skip to content

Commit e2fc41e

Browse files
authored
fixed wikipedia link to IEEE-754 standard
1 parent 6726909 commit e2fc41e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/05-data-types/02-number/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ There are two ways to do so:
192192

193193
## Imprecise calculations
194194

195-
Internally, a number is represented in 64-bit format [IEEE-754](https://en.wikipedia.org/wiki/IEEE_754-2008_revision), so there are exactly 64 bits to store a number: 52 of them are used to store the digits, 11 of them store the position of the decimal point, and 1 bit is for the sign.
195+
Internally, a number is represented in 64-bit format [IEEE-754](https://en.wikipedia.org/wiki/IEEE_754), so there are exactly 64 bits to store a number: 52 of them are used to store the digits, 11 of them store the position of the decimal point, and 1 bit is for the sign.
196196

197197
If a number is really huge, it may overflow the 64-bit storage and become a special numeric value `Infinity`:
198198

0 commit comments

Comments
 (0)