> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# No-New-Symbol

#### Sourcery rule id: `no-new-symbol`

#### Description

An instance of `Symbol` can only be created using `Symbol` as a function


#### Before

```javascript
new Symbol("abc")
```

#### After

```javascript
Symbol("abc")
```



#### Explanation

`Symbol` is not intended to be used with the `new` operator, but called as a function.
