> Autocompletion Javascript is a dynamic language and it's impossible to get anywhere near to what you have in Actionscript or Java. Just accept what your IDE (WebStorm for instance) might suggest for you. This goes for any interpreted language really. > How to organize code? Have a look at [requirejs][1] or node.js's own [module][2] [require][3] function. > Anonymous functions. Yes, get use to them. Javascript is very much function-based so you'd just have to accept that part. [Here][4] is a great starting point. > Several <script></script> tags and I declare a variable in one of them, > can the tags below it and above it access that variable? Nope, only tags below it. Try this: <body> <script> console.log(x); </script> <script> var x = 1; </script> </body> Console prints "x is undefined". [1]: http://requirejs.org [2]: http://nodejs.org/api/modules.html [3]: http://docs.nodejitsu.com/articles/getting-started/what-is-require [4]: http://eloquentjavascript.net/chapter6.html