Part 02: Singleton
Singleton is a creational design pattern. In this pattern only a single instance is created if it does not exist. If an instance exists, its reference is returned, new instance is not created. This single instance is called singleton. The value of a ...
omamazainab.hashnode.dev2 min read