Home Travis CI
Explanation of classes, prototypes and module pattern

Objectives

At the very begining javascript start considering prototypes as a solution of modeling the different things that needed to be resolved. After looking at the need of further problems and the limitation of this prototypes, some people proposed Module Pattern as a possible solution. Many people is using now a days, Classes as a possible solution too.

Conclusion

When code gets transpiled by different transpilers we can see that it will end up using some of this techniches, it is good to know about them. In legacy systems when we want to know how to take them to a better ground, we need to understand them.

Home