Sorry if this has been asked before, but if I declare a table:
local t = {}
Then give it a single value:
t.count = 28
And then add some content by index:
for i = 1, 10 do
t[I] = “some value”
end
Would I get 10 or 11 if I print it’s content.:
print(#t)
And does the first element now refer to the first “some value” or the 28.
I guess the short question would be; does assigning . property values affect the value inserted by index?
Thanks,
Matt. [import]uid: 8271 topic_id: 1846 reply_id: 301846[/import]