InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of the advanced mode in the closure compiler?(a) Renames variables(b) Renames function(c) Both Renames variables and function(d) Changes structures |
|
Answer» Right option is (c) Both Renames variables and function Easiest explanation: In Advanced mode it rewrites the JavaScript by renaming variables and functions from longer descriptive names to single letters to save file size, and it inlines functions, coalescing them into single functions wherever it determines that it can. |
|