can someone tell me how to use json? every other source on the internet is not helping

comments (single view)

{"key": "string value", "bool key": true, "table key" : {"key": "value", "bool": false, "int": 42, "list": [false, "blåhaj", 42, {"key" : "value"}]}}

yes, i know, but how do you access it within the code?

what language?

javascript (i already know how to use it in python)

just use `JSON.parse()` with a json string as input and it returns an object

View all comments