Managing JavaScript Application Resources with the Flyweight Pattern
In design patterns, the flyweight is considered one of the most useful classical solutions for code that's repetitive, slow and inefficient – for example: situations where we might create large numbers of similar objects. It's of particular use in JavaScript … Continue reading
