InterviewSolution
Saved Bookmarks
| 1. |
In what way does the closure compiler help in checking the code?(a) Warnings(b) Suddenly aborts(c) Rejects malicious inputs(d) Terminates the execution |
|
Answer» Correct option is (a) Warnings Best explanation: Closure compiler parses your JavaScript, analyzes it, removes dead code and rewrites and minimizes what’s left. The Closure Compiler provides warnings for illegal JavaScript and warnings for potentially dangerous operations, helping you to produce JavaScript that is less buggy and easier to maintain. |
|