- What is jQuery?
jQuery is known as the “write less, do more JavaScript library”. It is by far the most popular JavaScript library currently in use.
- How does it help us as developers?
jQuery makes it quicker and easier to build JavaScript webpages and web apps. Often with jQuery you can write a single line of code to achieve what would have taken 10-20 lines of regular JavaScript code.
- Why do we have 2 version of jQuery - minified and uncompressed?
The uncompressed .js file is easy to read and modify.
The minified .js file has all comments and unnecessary characters removed. Although it is not easy to read, its smaller size makes it better to use for websites as it will be much faster for visitors to download.