> Actually didn’t think that would work because of the extra "."
Yeah, it's actually the extra decimal that *helps* it work with parens in other cases as well. 1,2,3.4.toString() //works 1,2,3.toString() //error 1,2,3.0.toString() // works -- S.
> Actually didn’t think that would work because of the extra "."
Yeah, it's actually the extra decimal that *helps* it work with parens in other cases as well. 1,2,3.4.toString() //works 1,2,3.toString() //error 1,2,3.0.toString() // works -- S.