integer in JavaScript

The BigInt type is a numeric primitive in JavaScript that can represent integers with arbitrary precision. 
```
const v = BigInt(-1);
console.log(v);
```
Output:
```
-1n
```