Avoid new statements with the Symbol object

このページは日本語には対応しておりません。随時翻訳に取り組んでいます。翻訳に関してご質問やご意見ございましたら、お気軽にご連絡ください。

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