When working in Eclipse, there is a useful shortcut (default CTRL + 2 + L) that can create a new local variable to store the result of a selected expression. For example...
this.doSomeCalculation();
If you position the cursor over the line above and use CTRL + 2 + L, it will transform into...
double someCalculation = this.doSomeCalculation()
I frequently utilize this shortcut while coding in Java. Is there a similar feature available for editing TypeScript in Visual Studio Code?