Skip to content Skip to sidebar Skip to footer
Showing posts with the label Oop

Javascript: Access Own Object Property Inside Array Literal

Given an Array Literal inside a JavaScript Object, accessing its own object's properties does n… Read more Javascript: Access Own Object Property Inside Array Literal

How To Call This Onclick Javascript Function In My Architecture

I am using this article of architecture http://blog.extjs.eu/know-how/writing-a-big-application-in-… Read more How To Call This Onclick Javascript Function In My Architecture

Jquery And Object-oriented Javascript - Howto?

I've read this and this (thanks google) But it doesn't help enough. I'd like to know, i… Read more Jquery And Object-oriented Javascript - Howto?

About Object's Property Name

How to add a property to an object when the property name come from a var? var obj={}; var propName… Read more About Object's Property Name

Javascript Inheritance With Concise Prototype Assignment Syntax

I've defined two javascript classes using this (prototype) approach: function Parent () { t… Read more Javascript Inheritance With Concise Prototype Assignment Syntax

Difference Between 'var A = B' And 'this.a = B'

I have been dealing and learning about Objects and OOP in JS in the past few days and I good a basi… Read more Difference Between 'var A = B' And 'this.a = B'