Code QuizBeginner

bigint Type

Find why mixing bigint and number values errors here.

Codetypescript
const big: bigint = 100n;
const result = big + 1;
console.log(result);

What is the bug in this code?