<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** 2.3.2 **Code** ```ts const myName = () => 'hello'; ``` **Expected behavior:** The resulting es5 JavaScript should be ```javascript var myName = function myName() { return 'hello'; }; ``` **Actual behavior:** ```javascript var myName = function () { return 'hello'; }; ```