Can anyone help explain "An object is a member of Object" in ES2017 Language Specs? The sentence shows up in the specs multiple times. For example, in Chapter 4.2 ECMAScript Overview
Properties are containers that hold other objects, primitive values, or functions. A primitive value is a member of one of the following built-in types: Undefined, Null, Boolean, Number, String, and Symbol; an object is a member of the built-in type Object; and a function is a callable object. A function that is associated with an object via a property is called a method.
Javascript is a language made up of objects. object({}) is not the only type of Object. Arrays, functions, maps are all type of Object, expect for the primitives mentioned in the spec all are type of Object. The term
means that regular object({}) is part of the primitive built in type Object (notice the difference in caps and smalls). you can continue to say
function is a member of the built-in type Object, Array is part of and so on..