What is OOP?

Object Oriented Programming (OOP) is a programming paradigm that uses objects - data structures consisting of datafields and methods - and their interactions to design applications and the programs. JS uses the Prototype Pattern and therefore lacks the concept of class.Instead the OOP in JS relies on attaching objects and functions to the prototype s of an obj,which can be referenced by each object instantiation.

Loading...

Recent YDN

Recent YUI

Recent PlanetPHP

Top of Page