Facade Pattern
In this lesson, we will go over the facade pattern in detail with the aid of a coding example.
We'll cover the following...
What is the facade pattern?
In English, the word facade means a deceptive front or appearance. Following this definition, a facade pattern provides a simpler interface that hides the complex functionalities of a system. This is widely used in JavaScript libraries like jQuery.
The facade pattern allows you to hide all the messy logic from the client and only display the clear ...