What is scorched-earth optimizations?

A They optimize based on certain constraints
B They strip out everything including best practices
C Based on certain constraints
D Striping out additional things

Correct Answer: They strip out everything including best practices

The Closure Compiler is a tool for making JavaScript download and runs faster. Closure Compiler runs through a number of “scorched-earth” optimizations—it unfurls functions, rewrites variable names, and removes functions that are never called (as far as it can tell).

Next steps