Creating
POJOs in JavaScript.
POJO stands for Plain Old Java Object, but in our case, it will be
JavaScript instead of Java...Plain Old
JavaScript Objects. Sometimes in your code, you would need to create objects that are just containers for members (in OOP terms, these objects are usually referred to as classes).
read more >>