InterviewSolution
Saved Bookmarks
| 1. |
In what way is the closure compiler efficient?(a) Increases the size of the JavaScript files(b) Reduces the size of the JavaScript files(c) Reduces the execution time(d) Reduces the speed |
|
Answer» Correct answer is (b) Reduces the size of the JavaScript files Explanation: The Closure Compiler is a tool for making JavaScript download and runs faster. The Closure Compiler reduces the size of your JavaScript files and makes them more efficient, helping your application to load faster and reducing your bandwidth needs. |
|