Avoid new statements with the Symbol object

Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel, n'hésitez pas à nous contacter.

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