jQuery is the MUST HAVE tool for web developers. There are 3 good reasons why you should use jQuery.
window.onload = function () {alert("Welcome");};
❌ Figure: Bad example - Using JavaScript 'onload' event
$(document).ready(function () {alert("Welcome!");});
✅ Figure: Good example - Using jQuery document 'ready' event