| bio | website | |
|---|---|---|
| location | United Kingdom | |
| age | 44 | |
| visits | member for | 4 years, 8 months |
| seen | 8 hours ago | |
| stats | profile views | 6,475 |
Networking and standardisation specialist, currently focused on DNS and telecoms standards.
Author of RFC 5625, RFC 5966 and RFC 6915, and co-chair of the IETF HOMENET Working Group
Previously, Director of Network Operations at a successful business-focussed ISP in the UK.
|
8h |
comment |
struct tm - Why days start at 1 whereas months start at 0? I suspect the answer is "just because". |
|
8h |
comment |
Why declare properties on the prototype for instance variables in JavaScript re: your edit - the code in question makes so sense. The line that just says MyCircle.prototype.radius does nothing. |
|
10h |
revised |
Why declare properties on the prototype for instance variables in JavaScript added 12 characters in body |
|
10h |
comment |
Why declare properties on the prototype for instance variables in JavaScript @jayeshjain not the same question - this one is about declaring "normal values" on the prototype, not functions. |
|
10h |
answered | Why declare properties on the prototype for instance variables in JavaScript |
|
1d |
awarded | Nice Answer |
|
1d |
revised |
JavaScript: Enumerate non-native objects in given scope added 343 characters in body |
|
1d |
revised |
JavaScript: Enumerate non-native objects in given scope added 343 characters in body |
|
1d |
comment |
JavaScript: Enumerate non-native objects in given scope @JanDvorak it's feasible I guess, but only if you can ensure that the userscript is always loaded first, and if the userscript can actually access the main page's window object. ISTR there are restrictions on userscripts that might prevent that, though. |
|
1d |
answered | JavaScript: Enumerate non-native objects in given scope |
|
1d |
comment |
jQuery deferred object with dialog @griztown you're welcome! Glad to see the previous answer helped too. |
|
2d |
comment |
javascript: access function in closure no-one else appears to think my answer is misleading. You read something into it that isn't there. |
|
2d |
comment |
javascript: access function in closure @svidgen if I'm not mistaken, you started it... |
|
2d |
comment |
javascript: access function in closure the bit that's controversial is your apparently unwarranted assertions about how your method is so much better than the OP's trivially understood code. And my answer says nothing (implied or otherwise) about an explicitly named object. The properties could just as easily have been attached to this as you did, but there's no discernible benefit in doing so. |
|
2d |
comment |
javascript: access function in closure nope, none of those apply. You're way overthinking this. EOD. |
|
2d |
comment |
javascript: access function in closure sigh, no. I'm still suggesting that your solution is no better (and is in fact more complicated) than the code the OP posted. |
|
2d |
comment |
javascript: access function in closure the OP didn't want to return anything, he just wanted to call one of the named functions. |
|
2d |
comment |
javascript: access function in closure oh, and this in a closure can be (and often is) any variable - this depends on how the closure is invoked. Only in an IIFE would it default to window. |
|
2d |
comment |
javascript: access function in closure @svidgen I disagree. The OP's second code block is perfectly understandable, and could trivially be extended to include some lexically scoped variables, and all without needing to remember to call new to allow use of this. Like Derija93, I think his version is simpler, and it's just as flexible! |
|
2d |
comment |
javascript: access function in closure or by using property names, per his second code block. |