SymboltoStringTag
Symbol.toStringTag is a well-known symbol introduced in ECMAScript 2015 that customizes the result of Object.prototype.toString. It provides a way to influence the tag used in the default string representation of objects.
How it works: Object.prototype.toString returns a string like [object Type], where Type reflects the object's internal
Defining and usage: You can set Symbol.toStringTag on an object or its prototype to affect all instances.
Notes: The Symbol.toStringTag property is not enumerable and does not affect JSON serialization or other stringification
See also: Object.prototype.toString, Symbol, well-known symbols.