Re: [JSMentors] Re: Javascipt inheritance design issue

2011-12-23 Thread Nick Morgan
, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via

Re: [JSMentors] Re: Object Declaration Question

2011-12-08 Thread Nick Morgan
is the global object). The `this` inside `b` will be the new object. Nick -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] whether typeof function and method different ?

2011-12-01 Thread Nick Morgan
...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http

Re: [JSMentors] Studying Javascript....Need help..badly..

2011-11-08 Thread Nick Morgan
: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk

Re: [JSMentors] Null prototype and inheritance

2011-11-03 Thread Nick Morgan
On 3 November 2011 10:35, Asen Bozhilov asen.bozhi...@gmail.com wrote: Nick Morgan: Now, if you do this instead: Ctor.prototype = null; var y = new Ctor; y.toString; = function ... Here's a fiddle that illustrates the above: http://jsfiddle.net/skilldrick

Re: [JSMentors] Re: My jquery.observable library

2011-10-30 Thread Nick Morgan
, but if you're supporting browsers then chances are you don't have ES5, thus you need underscore] -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors

Re: [JSMentors] String Concatenation Performance

2011-10-14 Thread Nick Morgan
://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors

Re: [JSMentors] Re: I'm trying to write better JavaScript and I'm looking for some feedback on the code I wrote for a small app.

2011-10-07 Thread Nick Morgan
' 100% agree. If you're *that* upset by semicolons, use CoffeeScript. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] jQuery 'data' VS Global variable

2011-09-29 Thread Nick Morgan
archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions

Re: [JSMentors] Re: jQuery 'data' VS Global variable

2011-09-29 Thread Nick Morgan
'global' array can just be a top level member of your namespace. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search

Re: [JSMentors] Best approach to OOP in JavaScript

2011-09-28 Thread Nick Morgan
programmed in a purely prototypal language either. I'd like to so I can get some ideas as to *how* to do proper prototypal inheritance in JS. I'm interested to see JavaScript written in a way that doesn't get overloaded with excessive class-based baggage. -- Nick Morgan http://skilldrick.co.uk

Re: [JSMentors] Best approach to OOP in JavaScript

2011-09-27 Thread Nick Morgan
to create instances based on other instances, not on constructor functions. So you don't need to keep categories clear - everything is an object, there are no constructor functions. Or am I missing something? -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http

Re: [JSMentors] Better JSON traversal?

2011-09-19 Thread Nick Morgan
that the spec says there is no order means it's actually *useful* for Chrome to do it differently, as it stops developers from relying on a coincidence. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original

Re: [JSMentors] Re: Variable scope/timing issue w/ ajax within a JavaScript module

2011-09-15 Thread Nick Morgan
the callback has returned) whereas with .each it'll happen synchronously (the callback will be called multiple times with each element before the each function returns). Hope that helps! -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view

Re: [JSMentors] Re: Variable scope/timing issue w/ ajax within a JavaScript module

2011-09-15 Thread Nick Morgan
structure. But trying to get your head round all of that ^ from a standing start is madness if you ask me :) -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail

Re: [JSMentors] Re: Variable scope/timing issue w/ ajax within a JavaScript module

2011-09-15 Thread Nick Morgan
that makes sense :) Nick -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http

Re: [JSMentors] Re: spaces in attribute values

2011-09-08 Thread Nick Morgan
that adds no *needed* functionality? The difference between XPath and CSS is that XPath is targeted towards XML, whereas CSS is targeted towards HTML (primarily). So, when you're only working with HTML, XPath is un-necessarily verbose. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save

Re: [JSMentors] Essentials of interpretation Lesson 5. Simple user-defined functions.

2011-09-06 Thread Nick Morgan
@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http

Re: [JSMentors] Essentials of interpretation Lesson 5. Simple user-defined functions.

2011-09-06 Thread Nick Morgan
On 6 September 2011 17:14, gaz Heyes gazhe...@gmail.com wrote: On 6 September 2011 16:55, Nick Morgan skilldr...@gmail.com wrote: He said Also when I use `i` modifier I always use upper case letters in RegExp literal because they are easier for reading, i.e. when he uses the `i` modifier he

Re: [JSMentors] Re: Problem with global object

2011-08-26 Thread Nick Morgan
On 26 August 2011 04:43, RobG rg...@iinet.net.au wrote: On Aug 23, 11:06 pm, Nick Morgan skilldr...@gmail.com wrote: [...] The function declaration `createUniqueId` is effectively hoisted to the top of the script, so it actually *is* defined before you add the `counter` property

Re: [JSMentors] Re: Problem with global object

2011-08-26 Thread Nick Morgan
var statement at the top of the function. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google

Re: [JSMentors] Accessing private vars in the revealing module pattern

2011-08-22 Thread Nick Morgan
you use the language because of memory use is just premature optimisation. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] Re: Accessing private vars in the revealing module pattern

2011-08-22 Thread Nick Morgan
, just that it's possible, as a curiosity. To quote myself: I'm not suggesting using it in production code, just thought it was a nice idea :) [I think when people see `eval` a switch triggers in their brain and they go into survival mode] -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our

Re: [JSMentors] Accessing private vars in the revealing module pattern

2011-08-21 Thread Nick Morgan
in the scope of your `send` function... I would force string conversion before validating. Aha, sneaky! Good find. Cheers -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http

Re: [JSMentors] Accessing private vars in the revealing module pattern

2011-08-21 Thread Nick Morgan
. Cheers :) -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail

[JSMentors] Accessing private vars in the revealing module pattern

2011-08-20 Thread Nick Morgan
hax0rz)'); }); It gives you access to the value of private vars via a safe eval. Thought it might come in useful for testing occasionally. I'm not suggesting using it in production code, just thought it was a nice idea :) So, what do you think? Cheers -- Nick Morgan http://skilldrick.co.uk

Re: [JSMentors] Accessing private vars in the revealing module pattern

2011-08-20 Thread Nick Morgan
it through). I agree that exposing private variables is probably better in general. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] Are anonymous objects created with new automatically garbage collected?

2011-08-15 Thread Nick Morgan
want some internal functions, do something like this: parseColorToString = (function () { function privateFunction() {} var privateVar; return function () { return 'rgb(0,0,0)'; }; })(); -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org

Re: [JSMentors] Re: changing the URL without a page refresh

2011-08-13 Thread Nick Morgan
using hash-based URLs, or HTML5 pushState where available (if you ask it to). -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] Creating objects with inheritance, without objects

2011-08-10 Thread Nick Morgan
instantiation of an object is doing in the background. I can imagine a couple of ways in which this might be useful for security reasons, although really obscurely.  What were you thinking this could be used for? On Tue, Aug 9, 2011 at 3:25 PM, Nick Morgan skilldr...@gmail.com wrote: Hi all Just thought

Re: [JSMentors] Creating objects with inheritance, without objects

2011-08-10 Thread Nick Morgan
not creating every time a new FE on each message acceptor in the dispatcher. Dmitry. On 10.08.2011 2:25, Nick Morgan wrote: Hi all Just thought I'd share something I had a little fun hacking together tonight: https://github.com/skilldrick/funcobj I wanted to see if I could create

Re: [JSMentors] Essentials of interpretation

2011-08-10 Thread Nick Morgan
-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived

[JSMentors] Creating objects with inheritance, without objects

2011-08-09 Thread Nick Morgan
) return function () { //when calling super, make sure self is set to the method receiver return apply(superObject(methodName, self), arguments); } } log(Method, methodName, not known); } return dispatch; } -- Nick Morgan http://skilldrick.co.uk @skilldrick Save

Re: [JSMentors] Object.create

2011-07-09 Thread Nick Morgan
via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view

Re: [JSMentors] Re: Parameters vs. Objects as Parameters

2011-07-02 Thread Nick Morgan
of the JavaScript API is ugly - we can do much better than that. -- Nick Morgan http://skilldrick.co.uk @skilldrick Save our in-boxes! http://emailcharter.org -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non

Re: [JSMentors] Re: SICP-style streams, and the Sieve of Eratosthenes

2011-06-22 Thread Nick Morgan
something like (cons-stream exprA exprB) and have to explicitly make a lambda of the second expression means that it'll never be as expressive as Scheme, and the lack of tail calls means you need to resort to ugly hacks. Anyway, glad you enjoyed it! -- Nick Morgan http://skilldrick.co.uk

Re: [JSMentors] Re: Namespacing/Module Pattern: Why avoid overwriting an existing object?

2011-06-21 Thread Nick Morgan
have to rely on a.b.c being created before you can create a.b.d. It's partly to do with whether you're creating a library or an application I guess, and as always, it depends! -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original JSMentors Mailman

Re: [JSMentors] Feedback/code review for my canvas game

2011-06-13 Thread Nick Morgan
On 12 June 2011 21:28, Peter van der Zee jsment...@qfox.nl wrote: On Sat, Jun 11, 2011 at 8:01 PM, Nick Morgan skilldr...@gmail.com wrote: I'd really appreciate any feedback/constructive criticism you guys have. Why did you go for the revealing/factory/functions created in constructor pattern

[JSMentors] Feedback/code review for my canvas game

2011-06-11 Thread Nick Morgan
this for a blog tutorial on canvas, so I want the code to be as clear and 'correct' as possible. I'd really appreciate any feedback/constructive criticism you guys have. Cheers! -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original JSMentors Mailman list

Re: [JSMentors] Re: querySelectorAll

2011-06-01 Thread Nick Morgan
tired of trying to correct every error and instead focused on the most important. Do you really want me to correct every post *and* the errors in your page? -- Now now you two, keep it civil :) -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original

Re: [JSMentors] Recursive Function not returning properly?

2011-05-09 Thread Nick Morgan
to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com

Re: [JSMentors] Blog post on closures in JavaScript

2011-04-26 Thread Nick Morgan
Thanks! I'd just been watching some SICP videos when I came up with the idea for the post, so I had that kind of explanation on my mind (but I wanted to make it accessible). Nick On 26 April 2011 19:47, Peter van der Zee jsment...@qfox.nl wrote: On Tue, Apr 26, 2011 at 10:48 AM, Nick Morgan

Re: [JSMentors] TDD with javascript

2011-04-21 Thread Nick Morgan
...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com

Re: [JSMentors] Re: The case for restrict mode

2011-03-28 Thread Nick Morgan
Very interesting, you argue your case well :) I'll definitely be keeping an eye on it! On 28 March 2011 18:42, Olov Lassus olov.las...@gmail.com wrote: On Mar 28, 6:54 pm, Nick Morgan skilldr...@gmail.com wrote: Ok, that makes sense. I can imagine this being a useful tool, especially on large

Re: [JSMentors] Post/repo on small something to help with checking for object conformance

2011-03-21 Thread Nick Morgan
to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com

Re: [JSMentors] Pushing to Arrays

2011-03-16 Thread Nick Morgan
the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http

Re: [JSMentors] Re: Comments critiques on a function/expression please

2011-03-15 Thread Nick Morgan
your code. Hear, hear :) -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http

Re: [JSMentors] Re: Calling minified functions

2011-03-15 Thread Nick Morgan
. The accepted way to keep closure compiler from mangling certain names is to export them - see the docs: http://code.google.com/closure/compiler/docs/api-tutorial3.html#export -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from

Re: [JSMentors] Re: Calling minified functions

2011-03-15 Thread Nick Morgan
On 15 March 2011 17:29, Nick Morgan skilldr...@gmail.com wrote: If you're using [ignore that bit, sorry] -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com

Re: [JSMentors] Loading .js files dynamically

2011-03-08 Thread Nick Morgan
list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk

Re: [JSMentors] Loading .js files dynamically

2011-03-08 Thread Nick Morgan
Sorry, I've just realised this doesn't work, because it's not waiting for the script to load. Like Diego said, if you're going to do it this way then fire the callback on the onload event of the script. On 8 March 2011 12:12, Nick Morgan skilldr...@gmail.com wrote: A really basic fix would

Re: [JSMentors] What are the alternatives to var self = this?

2011-03-04 Thread Nick Morgan
; dialog.setWidth = function( width ) { dialog.width = width; } } -Mike Absolutely, I think this is the sanest way to deal with `this` issue. -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors

Re: [JSMentors] Re: ES5: Object.keys and Object.getOwnPropertyNames

2011-03-01 Thread Nick Morgan
wrong, there's a lot of good stuff coming in ES5, but I kinda wish BE could perform some kind of military coup over the committee - that would be awesome. -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors

Re: [JSMentors] Re: JSMentors - logo designer

2011-03-01 Thread Nick Morgan
a non-Google archive, visit here: http://www.mail-archive.com/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions

Re: [JSMentors] Re: Module pattern and testability

2011-02-18 Thread Nick Morgan
years after it was originally developed - patterns are names given to accepted good practices. Just because it didn't have a name when it was first developed doesn't mean it isn't useful for communication for it to have a name now. -- Nick Morgan http://skilldrick.co.uk @skilldrick http

Re: [JSMentors] Caching array length property

2011-02-18 Thread Nick Morgan
the readability slightly, and I'm not sure whether that's worth it when i *know* it's not going to affect performance. Then again, if I got used to using it consistently, the readability issue wouldn't be so big a deal. -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com

Re: [JSMentors] Module pattern and testability

2011-02-17 Thread Nick Morgan
@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors

Re: [JSMentors] Re: Function expression/statement

2011-02-16 Thread Nick Morgan
-expression/ -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google archive, visit here: http://www.mail-archive.com

Re: [JSMentors] Function expression/statement

2011-02-15 Thread Nick Morgan
differences. Internally, the difference is whether the grouping operator returns a function or the result of calling that function. - peter What a great explanation :) -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from

Re: [JSMentors] function name property

2011-01-14 Thread Nick Morgan
/jsmentors@googlegroups.com/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.comjsmentors%2bunsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors

Re: [JSMentors] function name property

2011-01-14 Thread Nick Morgan
Actually, it's not a joke, ignore that. Try this: console.log(); It prints the same thing: (an empty string) I see that's basically what Peter wrote - sorry, I didn't read it properly the first time. On 14 January 2011 20:24, Nick Morgan skilldr...@gmail.com wrote: I'm guessing

Re: [JSMentors] JS API Design - Accepting Parameters

2011-01-13 Thread Nick Morgan
to break compatibility because you'll check the number and type of the arguments. -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com

Re: [JSMentors] using new with Wrappers

2011-01-13 Thread Nick Morgan
in my thinking. Since new has to set up the prototype chain, it would necessarily have to return an object since primitives do not have properties and methods. Does this sound right? Well, you're correct, although I wouldn't have put it like that. Like what? Big and blue? ;) -- Nick

Re: [JSMentors] Re: select text from an element and insert into another element

2011-01-08 Thread Nick Morgan
to some of the unpleasantries that ensued. sorry to everyone if i sowed the seeds of discord, i hope we're all still friends. -daniel -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http

Re: [JSMentors] Legacy Javascript Code Strategies

2010-12-21 Thread Nick Morgan
first, then start refactoring and making it more modular. -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http://www.mail-archive.com/jsmentors@jsmentors.com/ To search via a non-Google

Re: [JSMentors] Re: Why can't I understand JavaScript

2010-12-16 Thread Nick Morgan
/ To unsubscribe from this group, send email to jsmentors+unsubscr...@googlegroups.comjsmentors%2bunsubscr...@googlegroups.com -- Nick Morgan http://skilldrick.co.uk @skilldrick http://twitter.com/skilldrick -- To view archived discussions from the original JSMentors Mailman list: http