Back to Basics: Visitor Pattern Explanation with JS Example
April 13, 2013 12:39 pm 2 CommentsVisitor pattern is one of my favourite software engineering design pattern. This technique enables us to extend the functionality of an object without having to modify its class codes. In a nutshell, this patten involves one main object and many visitors objects. The main object will have the ability to... View Article