Procházet zdrojové kódy

Clarify where `+` comes from

Paul Sinclair před 8 roky
rodič
revize
91d018e15f
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -214,7 +214,7 @@ As we have the character "e" from "undefined", we can use exponential notation t
 +("1e309")         //  Infinity
 +("1e309")     +[] // "Infinity"
 +("11e100")        //  1.1e+101
-+("11e100")    +[] // "1.1e+101"   (gives us `.`)
++("11e100")    +[] // "1.1e+101"   (gives us `.` and `+`)
 +("0.0000001")     //  1e-7
 +("0.0000001") +[] // "1e-7"       (gives us `-`)
 ```