Tagged Questions
3
votes
2answers
585 views
Iterate over all members of a object within a function of that object
It would be exceedingly handy if I could do this:
var MyObject = function(param1, param2, ... paramN)
{
this.var1 = stuff;
this.var2 = moreStuff;
.
.
.
this.varN = nStuff;
...
2
votes
3answers
129 views
How to declare a parent and child class in JavaScript?
The one thing I don't like about javascript is that there are hundreds of ways to do things. What I want to know, is how do I declare a class? Do I use the function() approach? Do I call ...
1
vote
4answers
137 views
What is the “this” pointer for global functions? [closed]
Possible Duplicates:
'this' keyword, not clear
this operator in javascript
function foo()
{
if(this === window)
return null;
return 1;
}
var i = foo(); // ...
1
vote
2answers
43 views
javascript constructor this isn't bound correctly
Problem: I define a constructor in JavaScript, I've tried almost every pattern I can think of / Google. For some reason no matter what I do when I call a member function of that object the this ...
1
vote
3answers
160 views
How to list the functions/methods of a javascript object? (Is it even possible?)
This question is intentionally phrased like this question.
I don't even know if this is possible, I remember vaguely hearing something about some properties not enumerable in JS.
Anyway, to cut a ...