This example shows how to declare a global variable 'count' in TypeScript using 'let'. The variable is initialized to 0 before any function runs. The function 'increment' increases 'count' by 1 and prints it. Each call to 'increment' updates the same global 'count', so the value persists and increases. The execution table traces each step, showing how 'count' changes and when output happens. Key moments clarify why the variable keeps its value between calls and what would happen if it were declared inside the function instead. The visual quiz tests understanding of these steps and variable behavior. The concept snapshot summarizes how to declare and use global variables simply and effectively.