JsonFormat
Last updated
⚠️ Not type methods. These are functions of the
jsonpackage: usejson.parse(),json.stringify(),json.format(),json.clean().
Converts A JS object or JSON string into a formatted JSON string
JsonFormat takes no parameters
arr = ["wow","crazy"]
// setup the array
log arr.JsonFormat()
// returns string
// [
// "wow",
// "crazy"
// ]Last updated