- JavaScript:Moving to ES2015
- Ved Antani Simon Timms Narayan Prusty
- 272字
- 2021-07-09 19:07:37
Chapter 5. JavaScript Patterns
So far, we have looked at several fundamental building blocks necessary to write code in JavaScript. Once you start building larger systems using these fundamental constructs, you soon realize that there can be a standard way of doing a few things. While developing a large system, you will encounter repetitive problems; a pattern intends to provide a standardized solution to such known and identified problems. A pattern can be seen as a best practice, useful abstraction, or template to solve common problems. Writing maintainable code is difficult. The key to write modular, correct, and maintainable code is the ability to understand the repeating themes and use common templates to write optimized solutions to these. The most important text on design patterns was a book published in 1995 called Design Patterns: Elements Of Reusable Object-Oriented Software written by Erich Gamma, Richard Helm, Ralph Johnson, and John Vlissides—a group that became known as the Gang of Four (GOF for short). This seminal work gave a formal definition to various patterns and explained implementation details of most of the popular patterns that we use today. It is important to understand why patterns are important:
- Patterns offer proven solutions to common problems: Patterns provide templates that are optimized to solve a particular problem. These patterns are backed by solid engineering experience and tested for validity.
- Patterns are designed to be reused: They are generic enough to fit variations of a problem.
- Patterns define vocabulary: Patterns are well-defined structures and hence provide a generic vocabulary to the solution. This can be very expressive when communicating across a larger group.
- Kali Linux Web Penetration Testing Cookbook
- Mobile Application Development:JavaScript Frameworks
- 軟件界面交互設計基礎
- HTML5+CSS3基礎開發教程(第2版)
- 用Flutter極速構建原生應用
- 程序員修煉之道:通向務實的最高境界(第2版)
- HTML5開發精要與實例詳解
- Mastering Apache Storm
- 石墨烯改性塑料
- Maven for Eclipse
- Building Clouds with Windows Azure Pack
- 計算機應用基礎(Windows 7+Office 2010)
- PHP 7 Programming Blueprints
- 系統分析師UML用例實戰
- Python自動化開發實戰