The following code: ``` typescript var a: any; ({} = a); ([] = a); ({}) => { }; ([]) => { }; ``` Outputs empty lists: ``` var a; (, a); (, a); (function (_a) { var ; }); (function (_a) { var ; }); ```
The following code:
Outputs empty lists: