Tagged Questions
0
votes
1answer
18 views
Pushing a children to “this” will also push it in the child's childrens… (Javascript)
I have some entity/component code in javascript. It's mostly done but I am hitting this really weird problem. My entities have a childrens array in which I push the childrens, and some other array ...
7
votes
3answers
3k views
CoffeeScript: Getter/Setter in Object Initializers
ECMAScript allows us to define getters or setters as following:
[text/javascript]
var object = {
property: 7,
get getable() { return this.property + 1; },
set setable(x) { this.property = x / ...
0
votes
1answer
180 views
Correct callbacks and references for a PhoneGap-App
I want to create a PhoneGap-Application with multiple database tables that will be parsed into Javascript-Objects, so I wrote the following code.
$(document).ready( function(){
var ...
25
votes
8answers
1k views
(Open Source) Examples of JavaScript Prototypical OO
Bounty Edit:
I'm looking for code written in a pure prototypical OO paradigm (think Self). Not a mixture of prototypical OO and classical OO. I don't want to see generic OO wrappers but simply usage ...
37
votes
4answers
4k views
Prototypical OO in JavaScript
TL;DR:
Do we need factories/constructors in prototypical OO? Can we make a paradigm switch and drop them completely?
The BackStory:
I've been toying with doing prototypical OO in JavaScript lately ...
13
votes
3answers
2k views
Improving Simple JavaScript Inheritance
John Resig (of jQuery fame) provides a concise implementation of Simple JavaScript Inheritance. His approach inspired my attempt to improve things even further. I've rewritten Resig's original ...
1
vote
2answers
910 views
Which JavaScript OOP design pattern will most take advantage of (new) ECMAScript 5 features?
ECMAScript 5 is in final draft now, and includes new features relating to objects and prototypes. While hunting around SO and Google for OOP design patterns, I found that there were quite a few ...