Object Oriented Javascript Part 1 and 2
Posted by bsmbahamas on May 5, 2011 in Web Design |
JavaScript is not a full-blown OOP (Object-Oriented Programming) language, such as Java, but it is an object-based language. So, why should you use objects? Not only do they help you better understand how JavaScript works, but in large scripts, you can create self-contained JavaScript objects, rather than the procedural code you may be using now. This also allows you to reuse code more often…
>> Object Oriented Javascript Part 1
>> Object Oriented Javascript Part 2