JSON for JS devs
What is a JSON
type JSONPrimitive = string | boolean | number | null;
type JSONObject = { [k:string]: JSONValue };
type JSONArray = JSONValue[];
type JSONValue = JSONArray | JSONObject | JSONPrimitive;
Static function of JSON
š”
JSON.stringify(data...
vincenguyen.hashnode.dev7 min read