Archives
What is Object Oriented Programming? Why use Object Oriented Programming? How does Object Oriented Programming apply to JavaScript? Those are the questions I am going to try and answer for you. What is Object Oriented Programming? Object Oriented ProgrammingW (OOP) in the simplest of forms is grouping all of the data and functions that operate [...]
Object Oriented Javascript (OOP) Part 2 I would like to build on the Object Oriented Javascript page I talked about in an earlier post. I explained how to use inheritance and polymorphism but sometimes a static function ( that is there is only one copy of the function no matter how many objects you create) can be [...]
Have you ever wondered if there was a way to write javascript that looks almost like Java? Well, there is thanks to the guys that wrote prototype. I wrote up an example to help get you started “Object Oriented Javascript”.