Find why mixing bigint and number values errors here.
const big: bigint = 100n; const result = big + 1; console.log(result);
What is the bug in this code?