JSON
json.keys
Table의 visible keys를 new table marked as a JSON array로 반환합니다.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Table의 visible keys를 new table marked as a JSON array로 반환합니다.
json.keys(object: table): table
local record = {
name = "Real",
enabled = true,
[5] = "numeric key",
}
for _, key in ipairs(json.keys(record)) do
print(key)
end