This visual execution shows how to convert strings to uppercase and lowercase in TypeScript. We start with a string variable 'text' holding "Hello World". Then we create 'upper' by calling text.toUpperCase(), which returns "HELLO WORLD" without changing 'text'. Next, we create 'lower' by calling text.toLowerCase(), which returns "hello world". Finally, we print both 'upper' and 'lower'. The key point is that the original string does not change because strings are immutable. This helps beginners understand how string methods work step-by-step.