Answers for "how to check if table is clear"

Lua
0

how to check if table is clear

local Table = {}

if #Table == 0 then
	print("This table is empty!")
end
Posted by: Guest on February-17-2021

Code answers related to "how to check if table is clear"

Browse Popular Code Answers by Language