Code QuizBeginner

Variable Declarations with Types

Find why this typed variable declaration fails to compile.

Codetypescript
const count: number = 0;
count = count + 1;
console.log(count);

What is the bug in this code?