@Ricky-U Dot-notation syntax is “value dot property-name” not “value dot dot property-name”
– QuentinMay 03 '22 at 07:04
yes i'm aware of dot notation syntax, but if the first . is a number literal representation a decimal point, then why 10.0..toString() does not work? and 10..toString() works.
– Ricky-UMay 04 '22 at 07:45
@Ricky-U — Yes, the **first** dot is the decimal point is but `10.0..toString()` has **three** dots in it. The second expects a property name after it, not another dot.
– QuentinMay 04 '22 at 07:46