Avoid new statements with the Symbol object

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: javascript-best-practices/no-new-symbol

Language: JavaScript

Severity: Error

Category: Best Practices

Description

Symbol is intended to be called as a function. Do not instantiate with new statements.

Non-Compliant Code Examples

var foo = new Symbol('foo');
function bar() { return function Symbol() {}; } var baz = new Symbol('baz');

Compliant Code Examples

var foo = Symbol('foo');
new foo(Symbol);
new foo(bar, Symbol)
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis