Yes. jQuery is the easiest way to start making something on JS in a browser. The biggest advantage of it is working with collections of nodes (empty or non-empy). Unfortunately DOM allows to work with separate nodes so you need to check for node existence (querySelector) or iterate over method-less NodeList (querySelectorAll).
I guess almost everybody gets start as a JS developer from jQuery.