JS: Set.prototype

By Xah Lee. Date: . Last updated: .

(new in ECMAScript 2015)

What is Set.prototype

Purpose of Set.prototype is to provide methods and properties useful for all set objects.

Set.prototype is the parent of all set objects.

console.assert(Reflect.getPrototypeOf(new Set()) === Set.prototype);

[see the Set Object Tutorial]

Properties

JavaScript. Set Object