JS: JSON (namespace)

By Xah Lee. Date: . Last updated: .

What is the Keyword JSON

JSON is the value of the property key "JSON" of the Global Object.

console.log(globalThis["JSON"] === JSON);

Type

Type of JSON is Object .

typeof JSON === "object"

Parent

Parent of JSON is Object.prototype.

Reflect.getPrototypeOf(JSON) === Object.prototype

Purpose

Purpose of JSON is as a namespace, for functions working with the JSON Data Format.

Properties

JSON