symbol dot
-
Property of an object
- Examples:
set colorValue to {red:55, green:89, blue:108}
put colorValue.green --> 89- Related: ’s , of
-
Function of an object or value
- Examples:
put (4+5).sqrt --> 3
Property of an object
set colorValue to {red:55, green:89, blue:108}
put colorValue.green --> 89
Function of an object or value
put (4+5).sqrt --> 3