The best way I've found to learn JavaScript is through anything by Douglas Crawford. 'JavaScript the Good Parts' is especially good. http://oreilly.com/catalog/9780596517748 http://www.youtube.com/watch?v=hQVTIJBZook
The best JavaScript guide ever
31–40 of 56 posts
Re: The best JavaScript guide ever
#32Earlier quoted context omitted.
Returning an object from a function was not the problem - it was "returning" from a Script (as executed by the NodeJS Script class). So essentially the last value in the script, I suppose. I like the ({x:1}) shortcut, thanks!
I don't quite understand what you mean by 'returning from a script'. That doesn't make too much sense within Javascript itself, if it's a case of the last expression being considered the return value (I haven't used NodeJS), then you would want: doSomething(); ({x:1});
eval("{x:1}") // returns 1
eval("({x:1})") // returns {x:1}Re: The best JavaScript guide ever
#33Re: The best JavaScript guide ever
#34The best way I've found to learn JavaScript is through anything by Douglas Crawford. 'JavaScript the Good Parts' is especially good. http://oreilly.com/catalog/9780596517748 http://www.youtube.com/watch?v=hQVTIJBZook
Re: The best JavaScript guide ever
#35Re: The best JavaScript guide ever
#36The best way I've found to learn JavaScript is through anything by Douglas Crawford. 'JavaScript the Good Parts' is especially good. http://oreilly.com/catalog/9780596517748 http://www.youtube.com/watch?v=hQVTIJBZook
Agreed, but the name is Crockford. His site, which has a bunch of interesting JavaScript links on it: http://crockford.com
Re: The best JavaScript guide ever
#37I personally prefer programming guides with some humor, lots of examples and exercises. That's why I recommend Eloquent Javascript by Marijn Haverbeke. http://eloquentjavascript.net/
Re: The best JavaScript guide ever
#38Re: The best JavaScript guide ever
#39The best way I've found to learn JavaScript is through anything by Douglas Crawford. 'JavaScript the Good Parts' is especially good. http://oreilly.com/catalog/9780596517748 http://www.youtube.com/watch?v=hQVTIJBZook