JSON and URI
JSON and URI builtins in Tish.
JSON
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}'JSON and URI builtins in Tish.
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}'