For example:
local var = {}
is there a way to check if the variable above is a table or a string and more?
use type()
type()
local var = {} print(type(var))
this will print table
table