```js function foo() { const a = 5; return a + 5; } ``` output: ```js function foo() { return 5 + 5; } ``` Deadcode elimination is now run last, so we don't have anything after DCE. It requires a second pass to optimize this further.
output:
Deadcode elimination is now run last, so we don't have anything after DCE. It requires a second pass to optimize this further.