JavaScript Object Notation (JSON)
JavaScript Objects Can be defined using JSON-like* notation (JavaScript Object Notation)
const square = {
colour: "red",
size: 10,
draw: function () {
return `A ${this.size} pixel ${this.colour} square.`;
}
}