Browse Source

Clarify where `+` comes from

Paul Sinclair 8 years ago
parent
commit
91d018e15f
1 changed files with 1 additions and 1 deletions
  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 `-`)
 ```