JSON and URIJSON and URI builtins in Tish.JSON FunctionDescriptionJSON.parse(s)Parse JSON string to valueJSON.stringify(v)Serialize value to JSON string Example let json = '{"name":"Alice","age":30}' let obj = JSON.parse(json) console.log(obj.name) // "Alice" let str = JSON.stringify({ x: 1, y: 2 }) console.log(str) // '{"x":1,"y":2}' URI FunctionDescriptionencodeURI(s)Percent-encode URIdecodeURI(s)Decode percent-encoded URIConsoleMath