Example: ```typescript let i = 1 function foo(x = i++){ return x } foo() ``` This puts the preceding statements for `i++` outside of the function.
Example:
This puts the preceding statements for
i++outside of the function.