JavaScript - The Complete Guide 2022

Section 19: Third-Party Libraries - Don't Re-Invent The Wheel!

olivia_yj 2022. 11. 3. 20:22

The goals

💪🏻What & Why?

✌🏻Examples

👍🏻Easier Http Usage with Libraries

 

Lodash

 

jQuery

 

 

 

 

Sources

https://lodash.com/

 

Lodash

_.defaults({ 'a': 1 }, { 'a': 3, 'b': 2 });_.partition([1, 2, 3, 4], n => n % 2);DownloadLodash is released under the MIT license & supports modern environments. Review the build differences & pick one that’s right for you.InstallationIn

lodash.com

https://jquery.com/

 

jQuery

What is jQuery? jQuery is a fast, small, and feature-rich JavaScript library. It makes things like HTML document traversal and manipulation, event handling, animation, and Ajax much simpler with an easy-to-use API that works across a multitude of browsers.

jquery.com