Arrays: Difference between revisions

Content added Content deleted
Line 5,368: Line 5,368:
anyArray.append(1) // ["foo", 1]
anyArray.append(1) // ["foo", 1]
anyArray.removeAtIndex(1) // Remove object
anyArray.removeAtIndex(1) // Remove object
anyArray[0] = "bar" // ["bar"]]</lang>
anyArray[0] = "bar" // ["bar"]</lang>


=={{header|Tcl}}==
=={{header|Tcl}}==