BigInt Javascript

let BigInt = 9007199254740991n;

//Add to BigInts

console.log(BigInt + 1n);
//Result: 
//9007199254740992n

//Add a BigInt and a Number
console.log(BigInt + 1);
//Result:
//ERROR: Cannot mix BigInt and other types, use explicit conversions.