Accesses an element inside an object by using an indexer
[]
op_ArrayAccess(other)
table = {
a = true,
op_ArrayAccess = function(other)
{
if(other == "a" || other == 0)
{
return table.a
}
return null
}
}
b1 = table["a"] //returns value of a
b1 = table[0] //returns value of a