InterviewSolution
Saved Bookmarks
| 1. |
What is the purpose of minifying the JavaScript?(a) To streamline the visits(b) To save the visits(c) To save data(d) To increase the loading time |
|
Answer» The correct choice is (a) To streamline the visits Explanation: To ensure that your first-time visits are as streamlined as possible, we need to minify our JavaScript. Minifying JavaScript results in decreasing the loading time and hence helps in creating a better user experience. |
|