Copyright © 2016 Mobilengine Corp. All rights reserved. version: 7.0.4.19927
Returns the value in a map that is associated with a specific key.
Remarks
The []
indexing operator is equivalent to the
map.GetAt()
method. The method throws an error at runtime if you pass it a
key that is not defined on the map.
Sample
"This is our map so far:", {age: 3, name: "Fjord", weight: 25, sex: "female"} "The cat's name is ", "Fjord" "The cat's name is STILL", "Fjord"
Figure 407. The trace message output of the script above