Post tagged "JavaScript"

If you cannot find what you are looking for, check the archives or use the category list provided in the right side-bar to view postings by category.

Here are the results of your request:

14 Nov 2008

Strategy Design Pattern

If you have the algorithms with conditional statements in the client code it will be messy. The Strategy pattern moves an algorithm from the client code to a separate class. A program that requires a...

10 Nov 2008

Factory Method Pattern in JavaScript

Last two months I posted about Factory Method Design Pattern in C#. Now I do the same thing in JavaScript. This is a simple example of the factory method pattern in JavaScript, The factory method getPhone()...