If I want to reuse a table variable which is the correct way or does it matter??
local t = { {1,2,3,4}, {1,2,3,4}, {1,2,3,4} } --do things-- --re-init the table-- t = nil t = {}
or is this fine?
local t = { {1,2,3,4}, {1,2,3,4}, {1,2,3,4} } --do things-- --re-init the table-- t = {}