docs.rodeo

MDN Web Docs mirror

Symbol.prototype.toString()

{{JSRef}} 

The toString() method of {{jsxref("Symbol")}}  values returns a string representing this symbol value.

{{InteractiveExample("JavaScript Demo: Symbol.prototype.toString()")}} 

console.log(Symbol("desc").toString());
// Expected output: "Symbol(desc)"

console.log(Symbol.iterator.toString());
// Expected output: "Symbol(Symbol.iterator)

console.log(Symbol.for("foo").toString());
// Expected output: "Symbol(foo)"

// console.log(Symbol('foo') + 'bar');
// Expected output: Error: Can't convert symbol to string

Syntax

toString()

Parameters

None.

Return value

A string representing the specified symbol value.

Description

The {{jsxref("Symbol")}}  object overrides the toString method of {{jsxref("Object")}} ; it does not inherit {{jsxref("Object.prototype.toString()")}} . For Symbol values, the toString method returns a descriptive string in the form "Symbol(description)", where description is the symbol’s description.

The toString() method requires its this value to be a Symbol primitive or wrapper object. It throws a {{jsxref("TypeError")}}  for other this values without attempting to coerce them to symbol values.

Because Symbol has a [Symbol.toPrimitive]() method, that method always takes priority over toString() when a Symbol object is coerced to a string. However, because Symbol.prototype[Symbol.toPrimitive]() returns a symbol primitive, and symbol primitives throw a {{jsxref("TypeError")}}  when implicitly converted to a string, the toString() method is never implicitly called by the language. To stringify a symbol, you must explicitly call its toString() method or use the String() function.

Examples

Using toString()

Symbol("desc").toString(); // "Symbol(desc)"

// well-known symbols
Symbol.iterator.toString(); // "Symbol(Symbol.iterator)"

// global symbols
Symbol.for("foo").toString(); // "Symbol(foo)"

Implicitly calling toString()

The only way to make JavaScript implicitly call toString() instead of [Symbol.toPrimitive]() on a symbol wrapper object is by deleting the [Symbol.toPrimitive]() method first.

[!WARNING] You should not do this in practice. Never mutate built-in objects unless you know exactly what you’re doing.

delete Symbol.prototype[Symbol.toPrimitive];
console.log(`${Object(Symbol("foo"))}`); // "Symbol(foo)"

Specifications

{{Specifications}} 

Browser compatibility

{{Compat}} 

See also

In this article

View on MDN