What the difference between JavaScript vs jQuery

This article is mainly for those developers who are new to web development. People who start their career usually question - why jQuery while there is JavaScript; or the difference between JavaScript and jQuery; which is better to use - JavaScript or jQuery; is jQuery an alternative for JavaScript; or will jQuery replace JavaScript etc.

Let us first look at what is JavaScript and what is jQuery.

What is JavaScript

JavaScript (JS) is a dynamic programming language. It is an interpreted language. Other than the unfortunate similarity in name, it has nothing to do with Java programming language. As the name suggests, JavaScript is a scripting language.

It is most commonly used for appealing UI (like moving objects, flashy elements in the screen), user interactions (client-side validation, showing pop-up etc.) and for controlling the document content displayed to the user.

There is nothing you need to include in the browser to support JavaScript. This is because it was considered as the language of the web since its birth. It runs in all modern browsers without any additional plugins.

What you mean by JavaScript is dynamic

Most programming languages have dynamic behaviors. But in the case of JavaScript, pretty much everything is dynamic.

All variables are dynamic in type and existence. You declare a variable as,

var msg = "Hello World!";  

The code written in JavaScript is dynamic, you can create a variable at runtime, and the type is determined at runtime.

You can create new functions or replace existing functions at runtime.

New codes are added to the browser when more script files are loaded and you can add any number of files at any time.

What is jQuery

jQuery website defines jQuery (jQ) as “jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development.”.

jQuery is not a programming language instead it is a cross-platform JavaScript library. There are many other JavaScript libraries available like MooTools, Knockout or even Angular (Though Angular uses TypeScript, it compiles to JavaScript at the end) and jQuery is one of the most popular among them.

jQuery is a fast feature-rich JavaScript library. It is created to help programmers with creating common UI and take care of the browser compatibility issues more easily.

jQuery, in fact, is nothing but JavaScript. All the code you write in jQuery is converted to JavaScript internally. One line of code written using jQuery may be equal to many lines of code written using JavaScript which means programmers will have to write only lesser lines of code.

To start using jQuery on your page, you need to include one line of code in the header of your page like,

<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.2.1.min.js"></script > 

The above line includes a jQuery library to your page using the Microsoft CDN (Content Delivery Network). The jQuery library is a single JavaScript file.

You can also include the jQuery library as a local resource from your project folder.

But there are benefits using the CDN. If you use the minified version of the library, you will get the advantage of concurrent connections and multiple servers.

JavaScript Vs jQuery

Now, we can discuss the questions mentioned at the beginning of this article. Most of those questions may arise because of the lack of clear understanding of JavaScript and jQuery.

Since jQuery is nothing but a library of JavaScript, it cannot replace JavaScript. All jQuery code is JavaScript, but jQuery doesn’t include all the JavaScript code.

One thing you should understand is that they are not two programming languages; instead, they both are JavaScript. jQuery is just optimized to do the common scripting functions with fewer lines of code.

Lines of code

Many actions like Animate, Delay, Fade-In can be done using jQuery with very few lines of code. On the other hand, JavaScript will take lots of lines of code for the same.

We can consider a simpler example,

Suppose I want to select all elements having class- simple-li,

If I use JavaScript,

document.getElementsByClassName("simple-li");  

On the other hand, if I use jQuery,

$('simple-li') 

Performance

If you check the performance of the two, you can find that plain JavaScript is faster than jQuery for accessing DOM. But JavaScript can be slower when you write some complex logic given the fact that we may make major mistakes or use poor code which may lead to a performance hit. On the other hand, jQuery has been tested for years to use best and fast JavaScript codes.

In my view, it is not right to compare the two or you cannot say one is better than the other. We need to use whichever is better suited to our requirement.

A few points to remember

This is image title

Advantages of jQuery

  • You can code most common JS actions using jQuery with fewer lines of code.
  • Browser compatibility – you can write code which runs across browsers without having to know the various browser intricacies and won’t break.
  • Lets you write JavaScript quicker and easier.
  • Avoids common browser errors
  • Simplification of usually complicated operations – complex operations like Ajax interactions, animation, event handling etc. are handled by jQ with the best lines of code.
  • jQ is battle tested and uses the fast and best lines of code for accomplishing most tasks.

Conclusion

In short, we can say that for rapid web development it is good to use JQuery, as it also takes care of common browser errors and through its ready to use library functions things gets faster. Though it totally depends on your need to choose any one of them, still most of the web development projects work fine with JQuery rather than JavaScript. For initial product versions, you can start with JQuery as debugging time will also get reduced, while later you can switch to JavaScript.

jQuery is well suited for most applications, especially ones which need rapid development. jQuery takes care of the common browser errors by ironing the fixes right into the library. jQuery also takes care of browser compatibility issue which is a developer’s nightmare during deployment.

Using JavaScript or jQuery really depends on your need and other factors. Most of the web development projects will work perfectly fine using jQuery. But there will be a small percentage that does require JavaScript.

Since pure JavaScript is the best performing method of client-side development, there is a reason to use it. But a library like jQuery will help you to get to market faster and cheaper. So, it is  better to depend heavily on jQuery for the initial versions of your product. Once your product is established in the marked and you have got the revenues to go back and refactor the code, you can go ahead and custom code all the script.

Thank you for reading!

#JavaScript #jQuery #difference

What the difference between JavaScript vs jQuery
1 Likes17.40 GEEK