Index
 
  The Wiring 1.0 _ALPHA_ Reference is a work in progress.
If you see any errors or have any comments, please write to: hbarragan [at] uniandes.edu.co
Name  

. (dot)

   
Examples  

Description   Provides access to an object's methods and data. An object is an instance of a class or datatype and contains is a grouping of methods (object functions) and data (object variables and constants). The dot operator directs the program to the information encapsulated within an object.
   
Syntax  
object.method()
object.data
   
Parameters  
object   the object you want to access

method()   method encapsulated in the object

data   variable or constant encapsulated in the object

   
Usage   Web & Application