Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to check if a table is empty?

Asked by
danglt 185
6 years ago
1function empty()
2    print("table empty")
3end
4-- Place i need help with --

3 answers

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

Using #Table will give you the length of it.

1table = {182}
2 
3function is_empty(x)
4if #table<=0 then
5return true
6end
7end

`

Ad
Log in to vote
0
Answered by
metryy 306 Moderation Voter
6 years ago
1if #table < 1 then
2    print("Table is empty.")
3end

Hope that helped^

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

You can do a few things.

01local t = {}
02 
03if #t < 1 then
04 --do code
05end
06 
07if not t[1] then
08 --do code
09end
10 
11for i,v in pairs(t) do
12  if not v then
13    --do code
14    end
15end
0
loooooool raid6n 2196 — 4y

Answer this question