08.03.2023, 10:21
Hello!
Is there a way to add square brackets in the result when using json.encode?
I want the following:
to look like this:
when using log(var_)
Is there a way to add square brackets in the result when using json.encode?
I want the following:
Code:
local var_ = json.encode({
RoomStatus = 0
)}
to look like this:
Code:
"RoomStatus":[0]
when using log(var_)